Use in a coding agent¶
The agent skill teaches a coding agent to drive zotio directly — the most efficient path, with no MCP server in the middle. Install it as shown in Install.
Invoke it¶
In Claude Code (or another supported agent), invoke the skill with your goal:
The skill drives the CLI directly, choosing commands and flags for you.
How agents discover the surface at runtime¶
zotio is built to be introspected, so an agent never has to hard-code a command list:
zotio agent-context --pretty # structured JSON: commands, flags, auth
zotio which "stale tickets" # resolve a natural-language goal to a command
zotio capabilities # read/write classification + preconditions
zotio <command> --help # per-command help
Add --agent to any command for agent-friendly defaults — JSON output, compact fields, no color, and non-interactive prompts. Mutating commands still preview unless you pass --yes:
Safety for automated callers¶
- Reads are safe and keyless. Writes preview by default;
--agentdoes not auto-apply them. --max-changescaps how many operations a single mutation may apply (lower under--agent).--dry-runshows the request without sending it.
See Safe-by-default writes for the full mutation contract and the command reference for every flag.