Agent Dispatch
The router behind /agent. Turns a subcommand into the right action and delegates. Contains no logic of its own — delegates to agent-architecture-audit, agent-config-audit, agent-folder-init, and setup-agent-routing.
Composition Boundary
Run only the selected mode. Pass the user's target, authorized actions, and
report-only restrictions to the engine. Existing explicit approval satisfies
that engine's gate for the same scope; obtain approval for missing or expanded
authority. Delegation never grants new host, provider, cost, publication, or
production permissions. An empty or advisory mode starts no mutating workflow.
Contract
Inputs:
- A single argument string (may be empty) parsed into a
mode.
Outputs:
- For
audit: a severity-ranked findings report diagnosing LLM wrapper and agent
failures, with a layer-by-layer fix plan.
- For
config: an audit report covering AGENTS.override.md, AGENTS.md,
configured fallbacks, CLAUDE.md, .cursorrules, hooks, and settings, with
proposed fixes.
- For
init: a scaffolded .agents/ folder structure plus root agent entry
files, with a summary of files created versus skipped.
- For
route: a drafted ## Agent skills routing block in CLAUDE.md/AGENTS.md
and seeded docs/agents/ reference files.
- For (empty): a one-line domain status summary and the Usage block.
Creates/Modifies:
- Nothing directly. The delegated skill performs any mutation behind its own
confirmation gate.
External Side Effects:
- None by default. The delegated skills may read git remotes,
gh APIs, or
workspace files when resolving routing state.
Confirmation Required:
- This skill is explicit-invoke only (
disable-model-invocation). Each delegated
skill owns its own confirmation gate before writing files or changing config.
This router does not relax them.
Delegates To:
agent-architecture-audit for audit (diagnose LLM and agent wrapper failures).
agent-config-audit for config (audit and sync agent config files).
agent-folder-init for init (scaffold or repair the .agents/ folder).
setup-agent-routing for route (write the dev-loop routing block).
Step 1 — Parse the Subcommand
Resolve the raw argument into a mode.
| Argument |
Mode |
Delegates to |
| (empty) |
status |
none — print a one-line domain summary + Usage block |
audit |
audit |
agent-architecture-audit |
config |
config |
agent-config-audit |
init |
init |
agent-folder-init |
route |
route |
setup-agent-routing |
If the argument matches none of these, report the unrecognized input and print
the Usage block — do not guess a mode.
Step 2 — Route
- status → print a one-line summary of the agent domain (no mutation), then
show the Usage block.
- audit → apply the
agent-architecture-audit skill.
- config → apply the
agent-config-audit skill.
- init → apply the
agent-folder-init skill.
- route → apply the
setup-agent-routing skill.
Usage
/agent # status: one-line domain summary + usage
/agent audit # diagnose LLM wrapper regressions, prompt/memory contamination, tool discipline failures
/agent config # audit and sync AGENTS.md, overrides, fallbacks, CLAUDE.md, hooks, and settings
/agent init # scaffold or repair the .agents/ folder and root agent entry files for a repo
/agent route # write the ## Agent skills routing block in CLAUDE.md/AGENTS.md + docs/agents/
Anti-Patterns
- Re-implementing logic here. All domain logic belongs in the routed skill.
- Guessing on an unknown argument. Print Usage instead — a wrong guess could overwrite config or scaffold into the wrong directory.
- Skipping the delegated skill's confirmation gate. Each routed skill controls its own writes.
- Auto-running a mutating sub-skill on an empty argument. The default mode prints status only; it never initiates a write.
1---2name: agent-dispatch3description: Single front door for agent/subagent architecture, config, and setup. Parses a subcommand — audit, config, init, or route — and routes to the right engine: agent-architecture-audit (diagnose LLM wrapper and agent failures), agent-config-audit (audit and sync AI agent config files across workspaces), agent-folder-init (add or repair .agents/ project context for a repo), or setup-agent-routing (write a machine-readable routing block in CLAUDE.md/AGENTS.md). Backs the /agent command. Use when asked to audit an agent system, check config drift, initialize agent docs, or wire up routing, and the action must be picked from an argument like "audit", "config", "init", or "route".4---5
6# Agent Dispatch
7
8The router behind `/agent`. Turns a subcommand into the right action and delegates. Contains no logic of its own — delegates to `agent-architecture-audit`, `agent-config-audit`, `agent-folder-init`, and `setup-agent-routing`.
9
10## Composition Boundary
11
12Run only the selected mode. Pass the user's target, authorized actions, and
13report-only restrictions to the engine. Existing explicit approval satisfies
14that engine's gate for the same scope; obtain approval for missing or expanded
15authority. Delegation never grants new host, provider, cost, publication, or
16production permissions. An empty or advisory mode starts no mutating workflow.
17
18## Contract
19
20Inputs:
21
22- A single argument string (may be empty) parsed into a `mode`.
23
24Outputs:
25
26- For `audit`: a severity-ranked findings report diagnosing LLM wrapper and agent
27 failures, with a layer-by-layer fix plan.
28- For `config`: an audit report covering AGENTS.override.md, AGENTS.md,
29 configured fallbacks, CLAUDE.md, .cursorrules, hooks, and settings, with
30 proposed fixes.
31- For `init`: a scaffolded `.agents/` folder structure plus root agent entry
32 files, with a summary of files created versus skipped.
33- For `route`: a drafted `## Agent skills` routing block in CLAUDE.md/AGENTS.md
34 and seeded `docs/agents/` reference files.
35- For _(empty)_: a one-line domain status summary and the Usage block.
36
37Creates/Modifies:
38
39- Nothing directly. The delegated skill performs any mutation behind its own
40 confirmation gate.
41
42External Side Effects:
43
44- None by default. The delegated skills may read git remotes, `gh` APIs, or
45 workspace files when resolving routing state.
46
47Confirmation Required:
48
49- This skill is explicit-invoke only (`disable-model-invocation`). Each delegated
50 skill owns its own confirmation gate before writing files or changing config.
51 This router does not relax them.
52
53Delegates To:
54
55- `agent-architecture-audit` for `audit` (diagnose LLM and agent wrapper failures).
56- `agent-config-audit` for `config` (audit and sync agent config files).
57- `agent-folder-init` for `init` (scaffold or repair the `.agents/` folder).
58- `setup-agent-routing` for `route` (write the dev-loop routing block).
59
60## Step 1 — Parse the Subcommand
61
62Resolve the raw argument into a `mode`.
63
64| Argument | Mode | Delegates to |
65|---|---|---|
66| _(empty)_ | `status` | none — print a one-line domain summary + Usage block |
67| `audit` | `audit` | `agent-architecture-audit` |
68| `config` | `config` | `agent-config-audit` |
69| `init` | `init` | `agent-folder-init` |
70| `route` | `route` | `setup-agent-routing` |
71
72If the argument matches none of these, report the unrecognized input and print
73the Usage block — do not guess a mode.
74
75## Step 2 — Route
76
77- **status →** print a one-line summary of the agent domain (no mutation), then
78 show the Usage block.
79- **audit →** apply the `agent-architecture-audit` skill.
80- **config →** apply the `agent-config-audit` skill.
81- **init →** apply the `agent-folder-init` skill.
82- **route →** apply the `setup-agent-routing` skill.
83
84## Usage
85
86```bash
87/agent # status: one-line domain summary + usage
88/agent audit # diagnose LLM wrapper regressions, prompt/memory contamination, tool discipline failures
89/agent config # audit and sync AGENTS.md, overrides, fallbacks, CLAUDE.md, hooks, and settings
90/agent init # scaffold or repair the .agents/ folder and root agent entry files for a repo
91/agent route # write the ## Agent skills routing block in CLAUDE.md/AGENTS.md + docs/agents/
92```
93
94## Anti-Patterns
95
96- **Re-implementing logic here.** All domain logic belongs in the routed skill.
97- **Guessing on an unknown argument.** Print Usage instead — a wrong guess could overwrite config or scaffold into the wrong directory.
98- **Skipping the delegated skill's confirmation gate.** Each routed skill controls its own writes.
99- **Auto-running a mutating sub-skill on an empty argument.** The default mode prints status only; it never initiates a write.