Cognitor CLI Downloads
Download prebuilt binaries for macOS and Windows. The CLI gives full access to Cognitor API endpoints and generated endpoint-group commands.
Current version: v0.1.0
Install on macOS
# Apple Silicon curl -L -o cognitor https://cognitor.dev/downloads/cli/cognitor_0.1.0_darwin_arm64 chmod +x cognitor sudo mv cognitor /usr/local/bin/cognitor # Intel curl -L -o cognitor https://cognitor.dev/downloads/cli/cognitor_0.1.0_darwin_amd64 chmod +x cognitor sudo mv cognitor /usr/local/bin/cognitor cognitor version
Install on Windows
# PowerShell Invoke-WebRequest -Uri "https://cognitor.dev/downloads/cli/cognitor_0.1.0_windows_amd64.exe" -OutFile "cognitor.exe" New-Item -ItemType Directory -Force "$env:LOCALAPPDATA\Cognitor\bin" | Out-Null Move-Item .\cognitor.exe "$env:LOCALAPPDATA\Cognitor\bin\cognitor.exe" -Force $env:Path += ";$env:LOCALAPPDATA\Cognitor\bin" cognitor.exe version
Winget package: Cognitor.Cognitor
Package Managers
Homebrew (coming soon)
# Install from binary for now curl -L -o cognitor https://cognitor.dev/downloads/cli/cognitor_0.1.0_darwin_arm64 chmod +x cognitor sudo mv cognitor /usr/local/bin/cognitor
Winget
winget install Cognitor.Cognitor
Agent Skill Download
Download the Cognitor CLI integration skill for agent environments and add it to your project so agents can run reproducible Cognitor CLI workflows.
Cursor (project skill)
curl -L -o cognitor-skill.zip https://cognitor.dev/downloads/skills/cognitor-cli-agent-integration.zip mkdir -p .cursor/skills unzip -o cognitor-skill.zip -d .cursor/skills
Claude Code / Other Agents
curl -L -o cognitor-skill.zip https://cognitor.dev/downloads/skills/cognitor-cli-agent-integration.zip # Unzip into your agent's configured skills directory unzip -o cognitor-skill.zip -d <your-agent-skills-dir>
Quick Start
# Configure production profile cognitor config set --profile prod --base-url https://backend.cognitor.dev cognitor auth login --profile prod --username "admin@example.com" --password "admin123" # Use generated endpoint groups cognitor api groups cognitor api authentication get-auth-currentuser --profile prod --output json cognitor api admin-monitoring get-admin-monitoring-system-health --profile prod --output json