ワンクリックで
dispatch
Lightweight sub-agent dispatcher — fast fan-out that skips formal restatement and review-by-default
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Lightweight sub-agent dispatcher — fast fan-out that skips formal restatement and review-by-default
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Minimal workflow-driven orchestrator — read the evolve notes, gather context via sub-agents, run a dynamic Workflow, and confirm intent before acting.
Daily planning workflow - review last note, plan today, connect to active projects
Review English drafts for grammar, idiom, and naturalness. Correct inline with terse explanations.
Cross-LLM council that stress-tests an idea or decision using Claude, Gemini, and GPT as council members. User relays prompts to Gemini and GPT. Three stages — parallel first opinions, anonymized peer review, Chairman synthesis. Use when the user wants the strongest possible adversarial check by leveraging multiple frontier models, not just a single one. Inspired by karpathy/llm-council.
Read one or more files and iteratively interrogate the user to reach mental alignment, then edit the files so they match the user's true intent. Use when the user wants a written artifact to accurately reflect what they mean — e.g. "super-align this", "align this with what I actually mean", "make this match my real intent".
Review session context and persist actionable lessons into per-skill evolution.md files. Scriptless — Claude uses native Read/Edit/Write tools directly.
| name | dispatch |
| description | Lightweight sub-agent dispatcher — fast fan-out that skips formal restatement and review-by-default |
Read evolution.md in this skill's folder. Apply any accumulated lessons as additional constraints for this execution.
AskUserQuestion to clarify before proceeding.Every sub-agent is a senior peer, not a subordinate — it reads files, explores, and decides the HOW within its unit. Your job is to transfer the mental model (WHY and WHAT), then step back on the HOW. Peer-at-the-unit-level does not mean hands-off at the pipeline level: the dispatcher still coordinates across units — selecting subagent_type, relaying hand-offs between serialized agents, and handling failures.
Self-check before sending any dispatch prompt: "Am I telling the agent what to think, or giving it what it needs to think for itself?" If the former, cut.
For each unit from Phase 1, spawn a sub-agent via Agent:
subagent_type: default to general-purpose; use Explore/Plan only when the task genuinely needs their restricted toolset (user's standing preference — see CLAUDE.md). The type is a dispatcher-level routing choice — never prescribe the HOW inside the prompt itself.Permitted tools: Agent, AskUserQuestion, Glob, Grep, ToolSearch, Skill, Read (prefer dispatch; single small reads OK).
After all sub-agents complete, deliver a consolidated summary:
Triggered when the user signals they want review — "with review" is the canonical phrase, close variants qualify. After REPORT, dispatch reviewer agent(s) to audit all changes. Report the reviewer's findings. No auto-fix loop — surface issues for the user to decide. If the user then requests fixes, continue the original author agent via SendMessage (its context is intact) rather than briefing a cold agent.