Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/aaronnat23/disp8ch/code-dispatchnpx skills add aaronnat23/disp8ch --skill code-dispatchgit clone --depth 1 https://github.com/aaronnat23/disp8chWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aaronnat23/disp8ch/code-dispatch)<a href="https://agentmods.dev/skills/aaronnat23/disp8ch/code-dispatch"><img src="https://agentmods.dev/badge/skills/aaronnat23/disp8ch/code-dispatch.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00671 |
| Opus 5 | $0.00000 | $0.00336 |
| Sonnet 5 | $0.00000 | $0.00134 |
| Haiku 4.5 | $0.00000 | $0.00067 |
Grade A, and why
code-dispatch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Dispatch (ACP-style Coding Agent Delegation)
Delegate coding, file-system, and research tasks to a real CLI agent running on the user's machine. The orchestrator stays clean — no token overhead, no context window bloat. The specialist executes.
When to use
- Complex coding tasks that require multi-file edits, running tests, or reading the repo
- File-system operations beyond simple read/write (refactors, scaffolding, migrations)
- Research tasks that benefit from live CLI tools (git, grep, compilers, package managers)
- Any task where Claude Code's local tools + MCP servers give better results than inline agent calls
Rules
Agent ID: Always agent: "claude" (not "claude-code"). Use "gemini" or "codex" only when explicitly requested.
Mode selection by channel:
- Discord:
mode: "session"+thread: truefor multi-step work;mode: "run"for one-shot - Telegram / WhatsApp / Slack / Teams / BlueBubbles / WebChat: Always
mode: "run"— async thread binding is not available on these channels
Permission mode:
permission_mode: "approve-reads"(default): allows reads, prompts for writes/exec — safe for most taskspermission_mode: "approve-all": auto-approves all tool calls — only use for trusted, well-defined taskspermission_mode: "deny-all": read-only (Read, Glob, Grep, LS only) — use for audits or safe exploration
Timeout: Always set timeout_seconds (default 120, max 300). For complex refactors use 300.
Never nest: Do not call sessions_spawn from within a spawned session. The orchestrator dispatches; the specialist does the work.
Working directory: Always specify cwd pointing to the relevant project directory.
Example — Discord multi-step session
{
"tool": "sessions_spawn",
"agent": "claude",
"mode": "session",
"thread": true,
"permission_mode": "approve-all",
"cwd": "/path/to/project",
"task": "Refactor the auth module to use JWT. Run tests after each file change.",
"timeout_seconds": 300,
"label": "Auth JWT refactor"
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 69 lines · 0 tokens per session scan A 984b83592a54
code-dispatch is a skill published in the GitHub repository aaronnat23/disp8ch (98 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 671 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
release
Cut a versioned release and publish everos to PyPI via the tag-triggered workflow.
agent-initialization
Initialize an Agent's settings from a user requirement by writing AGENTS.md, setting identity metadata, and installing only needed Skills.
co-mail-and-drive
Read and send mail from the user's own Gmail or Outlook account, send from the agent's own address, manage their Outlook contacts, and list/search/download/upload their Google Drive files — with co gmail, co outlook, co email, and co gdrive. Use when the user asks about their inbox, an email they received or want to…
dashboard
Update the agent's Control Center. Use when the user says "update my Control Center", "update my dashboard", "redesign my home", or "/dashboard".
tldr
Verdict-first communication mode. Cuts token usage 60-75% by enforcing TLDR rules (1-sentence default, 3-word target, shape dispatch) while preserving full technical accuracy and truth priority. Supports levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "tldr mode", "talk…
tldr-help
Quick-reference card for all tldr modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /tldr-help, "tldr help", "what TLDR commands", "how do I use TLDR".