dispatch

dispatch is a skill for Claude Code from glitchwerks/claude-wayfinder. It costs 120 tokens per session (3,553 once invoked), scanned A, original, MIT.

A task-routing skill that chooses an agent or skill using a fixed set of seven decisions. It can use a live catalog of available tools or bundled example data.

In plain words
What is it for?
Use it to route requests through a catalog, test routing with demo data, or provide a second diagnostic routing result for comparison.
Why use it?
It removes guesswork from deciding which agent or skill should handle a request. In live mode, it also reports a clear error when the catalog is missing, unreadable, or invalid.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_DATA} variable. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

Part of the claude-wayfinder plugin — 5 skills, 6 hooks shipped together

Good fit Use it to route requests through a catalog, test routing with demo data, or provide a second diagnostic routing result for comparison.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/glitchwerks/claude-wayfinder/dispatch
Install

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.

Any agent
npx skills add glitchwerks/claude-wayfinder --skill dispatch
Clone the repo
git clone --depth 1 https://github.com/glitchwerks/claude-wayfinder

Made for: Claude Code.

Or install claude-wayfinder, the plugin that ships this one along with the rest of its 5 skills, 6 hooks.

Wrote 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.

agentmods badge for dispatch

README.md
[![agentmods](https://agentmods.dev/badge/skills/glitchwerks/claude-wayfinder/dispatch/github.svg)](https://agentmods.dev/skills/glitchwerks/claude-wayfinder/dispatch)
Your own site
<a href="https://agentmods.dev/skills/glitchwerks/claude-wayfinder/dispatch"><img src="https://agentmods.dev/badge/skills/glitchwerks/claude-wayfinder/dispatch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dispatch

Your own site · 80×15
<a href="https://agentmods.dev/skills/glitchwerks/claude-wayfinder/dispatch"><img src="https://agentmods.dev/badge/skills/glitchwerks/claude-wayfinder/dispatch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,553 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00120 $0.03553
Opus 5 $0.00060 $0.01776
Sonnet 5 $0.00024 $0.00711
Haiku 4.5 $0.00012 $0.00355

Measured 8d ago against content hash cb9f29cfcb65, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

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 8d 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.

skills/dispatch/SKILL.md · 313 lines

How it starts

The opening of the file, as written. The whole thing — 313 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Dispatch Skill

The /dispatch skill is a mode-aware wrapper around the claude-wayfinder deterministic 7-decision matcher.

Modes

Real-catalog mode (default)

The skill reads a dispatch context JSON from stdin, runs the matcher against your live catalog, and returns the decision JSON verbatim. This is the default — no flag required. Catalog path resolution:

  1. --catalog-path <path> CLI flag.
  2. $DISPATCH_CATALOG_PATH env var.
  3. Canonical default$CLAUDE_HOME/state/dispatch-catalog.json or ~/.claude/state/dispatch-catalog.json (see "Canonical catalog path" below).

Demo mode (--demo flag)

Pass --demo to run the matcher against bundled demo fixtures instead of the live catalog. Returns decision output for all 7 routing branches so you can evaluate the matcher before integrating it into your router. --demo wins over --catalog-path and $DISPATCH_CATALOG_PATH — if both are present, demo mode runs and the catalog inputs are ignored.

Hard-error guarantee: Without --demo, if no catalog can be resolved (no flag, no env var, no file at the canonical path), or if the resolved file is missing/unreadable/malformed, the skill emits a [CATALOG ERROR] banner on stderr and exits non-zero. It does not silently fall back to demo mode — a broken or missing catalog is surfaced immediately so the consumer knows routing is degraded. The banner names the canonical default path and the repair hint inline.

Dispatch context JSON (real-catalog mode)

The consumer's router agent must compose a JSON object and pass it on stdin. task_description is the only required field:

{
  "task_description": "...",
  "file_paths": ["..."],
  "agent_mentions": ["..."],
  "tool_mentions": ["..."],
  "command_prefix": "...",
  "session_id": "...",
  "domain": "code",
  "posture": "build",
  "confidence": "high",
  "area_span": 1
}

All fields except task_description are optional; omit or pass null for fields that are not applicable. The four two-axis labels (domain, posture, confidence, area_span) are documented under Two-axis labels below.

Read the full file on GitHub · 313 lines

Changes

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.

  1. 8d ago First seen · 313 lines · 120 tokens per session scan A cb9f29cfcb65

Subscribe to this mod's changes

dispatch is a skill published in the GitHub repository glitchwerks/claude-wayfinder (2 stars, last pushed 2d ago), licensed MIT. It adds 120 tokens to every session and 3,553 once invoked, about $0.0006 per session on Opus 5. 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-08-31.

Related

Other skills, from other repositories

incident-response

Manage active production incidents through detection, triage, mitigation, communication, and resolution with structured roles and decision-making. Use this skill whenever the user has an active incident, a production issue, a service outage, a security incident, or needs to plan incident response procedures. Triggers…

rampstackco/claude-skills · 117 tokens

stakeholder-communication

Communicate effectively with stakeholders across functions and seniority levels. Use this skill when writing status updates, preparing executive reviews, sharing technical decisions with non-technical audiences, managing up, communicating bad news, or designing the communication cadence for a project. Triggers on…

rampstackco/claude-skills · 103 tokens

agb-begriff-vorformuliert-305

Für AGB Begriff Vorformuliert 305: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: agb-begriff-vorformuliert-305.

Klotzkette/claude-fuer-deutsches-recht · 68 tokens

analytics-strategy

Design measurement frameworks including event taxonomy, KPI hierarchy, dashboard architecture, attribution models, and analytics implementation strategy. Use this skill whenever the user wants to plan analytics, design dashboards, build event taxonomies, define KPIs, set up tracking, or audit existing measurement.…

rampstackco/claude-skills · 126 tokens

review-work

Post-implementation gate review: run manual QA on the real surface yourself, then launch ONE gate reviewer (never a panel) to audit goal, constraints, code quality, security, missed context, and QA evidence. Use before a PR handoff or when the user explicitly asks to review completed work.

code-yeongyu/oh-my-openagent · 63 tokens

agb-rechtswahl-schweizer-recht-rom-i

Für AGB Rechtswahl Schweizer Recht Rom I: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: agb-rechtswahl-schweizer-recht-rom-i.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens