From dispatch
This skill should be used when the user invokes "/dispatch:haiku <task>", asks to "run this with haiku", "use haiku for this", "dispatch to haiku", or wants a fast cheap subagent for a simple bounded task. Dispatches the given task to a Haiku model subagent and returns the result.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dispatch:haikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dispatch the task in `$ARGUMENTS` to a Haiku model subagent.
Dispatch the task in $ARGUMENTS to a Haiku model subagent.
Haiku is the fastest, cheapest tier. Use it for simple, deterministic, single-concern tasks: file reads, summaries, lookups, format conversions, yes/no checks.
$ARGUMENTS is empty, ask the user: "What task should I dispatch to Haiku?"Agent({
model: "haiku",
description: "<one-line summary of the task>",
prompt: "<the full task from $ARGUMENTS>"
})
If the task is clearly too complex for Haiku (multi-file analysis, architecture,
debugging a non-obvious issue), say so briefly and suggest /dispatch:sonnet or
/dispatch:opus instead. Don't refuse silently — explain the mismatch.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub jobrien127/plugin-marketplace --plugin dispatch