← ClaudeAtlas

agent-dispatchlisted

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".
shipshitdev/skills · ★ 35 · AI & Automation · score 77
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