Agent Commands Overview
In-agent commands, not terminal commands. These are the
/slashcommands an AI agent invokes in-chat (e.g./create-pr,/roadmap:process-full). They are not run via the Taskfile or theagent-configbinary — that is the separate terminal CLI surface.
agent-config ships 190 agent commands — workflow orchestrators that compose skills and governance gates into a repeatable flow.
Namespacing
Section titled “Namespacing”Commands use a cluster:name form at the slash surface, mapping to the
directory tree:
/council:default → commands/council/default.md/roadmap:process-full → commands/roadmap/process-full.md/agents:user:accept → commands/agents/user/accept.mdEach cluster is fronted by a top-level orchestrator (type: orchestrator,
routes_to: […]) — invoking the bare /council routes to a subcommand or shows
a menu. Standalone commands (no cluster) sit at the top level: /work,
/implement-ticket, /agent-handoff, /mode, /orchestrate, /condense, …
Source & catalog
Section titled “Source & catalog”- Authored source:
src/agent-src/commands/; shipped projection:dist/agent-src/commands/. - Authoritative index of all 190:
docs/catalog.md(also mirrored on the Catalog page).
- Command Clusters — the clusters at a glance.
- Key Commands — the ones you’ll reach for.