Curated AI agent slash commands for software development workflows. Install directly into your agent's native command system.
npm install -g @canopyide/commands
canopy-commands install --agent claudeCommands install to ~/.claude/commands/canopy/ and are immediately available via /help in Claude Code.
Fully autonomous issue-to-PR pipeline with 8 phases:
- Setup -- Parse input, install dependencies, explore codebase
- Research -- Google research grounded in tech stack
- Plan -- Implementation plan via Codex
- Implement & Test -- Write code and tests, run tests, commit
- Review -- Codex code review, fix findings
- Verify -- Lint, format, typecheck
- Finalize -- Push and create PR
- CI Watch -- Monitor CI, fix failures
Usage:
/canopy:work #123
/canopy:work https://github.com/org/repo/pull/456
/canopy:work "Add retry logic to the API client"
Structured GitHub issue creation with scope assessment and automatic decomposition for large tasks.
Usage:
/canopy:github:create-issue Add dark mode support to settings panel
canopy-commands install [--agent claude] [--version <ref>] # Install commands
canopy-commands list [--agent claude] [--installed] # List commands
canopy-commands sync [--agent claude] # Update to latest
canopy-commands search <query> [--agent claude] # Search commandsSome commands use external MCP servers for enhanced capabilities:
- Codex (
mcp__codex__codex) -- Used by the work pipeline for planning and code review. Requires an OpenAI API key and Codex MCP server configuration. - Ask Google (
mcp__ask-google__ask_google) -- Used by the research phase for web research. Requires a Google API key and Ask Google MCP server configuration.
Commands that require these servers will still run without them but with reduced functionality. The work pipeline's research and planning phases will skip their respective MCP calls and rely on codebase analysis alone.
- Claude Code -- Full support (v1)
- Gemini -- Planned
- Codex -- Planned
commands/
claude/ # Claude Code command files
work.md # Work pipeline orchestrator
work/ # Work pipeline sub-phases
github/ # GitHub integration commands
packages/
cli/ # @canopyide/commands npm package
MIT