A command-line tool for browsing and searching Zendesk tickets and Help Center docs.
curl -fsSL https://raw.githubusercontent.com/sorphwer/zendesk-cli-release/main/install.sh | shThis auto-detects your OS (macOS / Linux), downloads the latest release, and installs to ~/.zendesk-cli/.
After install, open a new terminal and run:
zendesk init # Enter your Zendesk credentials
zendesk tickets -n 5 # Verify it workszendesk tickets -n 10 # List recent tickets
zendesk ticket 12345 # View a single ticket
zendesk tickets --status open # Filter by status
zendesk tickets --assignee me # My assigned tickets
zendesk attachment list --ticket 12345 # List attachments
zendesk docs search --query "password" # Search Help CenterDefault is table (rich). Change globally:
zendesk set-env ZENDESK_OUTPUT text # plain text, good for piping and LLM inputOr override per command: zendesk tickets -n 5 -o json
If you just want the agent skill files (no binary), pull them directly:
curl -fsSL https://github.com/sorphwer/zendesk-cli-release/releases/latest/download/skills.tar.gz | tar -xzThis always fetches the skills bundled with the latest release. The tarball contains use-zendesk-cli/SKILL.md and supporting files — drop the use-zendesk-cli/ directory into your agent platform's skills folder (e.g. ~/.claude/skills/).
| Asset | Platform |
|---|---|
zendesk-cli-*-macos-arm64.dmg |
macOS Apple Silicon (Intel via Rosetta 2) |
zendesk-cli-*-linux-amd64.tar.gz |
Linux x86_64 |
Python is not required.