agent-dispatchlisted
Install: claude install-skill shipshitdev/skills
# 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`.
## 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