subagent-dispatch

subagent-dispatch is a skill for Claude Code, Codex from s977043/PlanGate. It costs 58 tokens per session (1,674 once invoked), scanned A, original, MIT.

A checklist-based setup guide for PlanGate, with checks for its required configuration and a doctor command as the source of truth.

In plain words
What is it for?
Use it to set up PlanGate, investigate a failing doctor check, track required configuration, and describe actions that must be completed manually.
Why use it?
It helps identify missing setup items without claiming that unverified parts are working, especially when reference files cannot be found.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/s977043/plangate/subagent-dispatch
Any agent
npx skills add s977043/PlanGate --skill subagent-dispatch
Clone the repo
git clone --depth 1 https://github.com/s977043/PlanGate

Made for: Claude Code, Codex.

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 subagent-dispatch

README.md
[![agentmods](https://agentmods.dev/badge/skills/s977043/plangate/subagent-dispatch.svg)](https://agentmods.dev/skills/s977043/plangate/subagent-dispatch)
Your own site
<a href="https://agentmods.dev/skills/s977043/plangate/subagent-dispatch"><img src="https://agentmods.dev/badge/skills/s977043/plangate/subagent-dispatch.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,674 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00058 $0.01674
Opus 5 $0.00029 $0.00837
Sonnet 5 $0.00012 $0.00335
Haiku 4.5 $0.00006 $0.00167

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

Security

Grade A, and why

subagent-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 3d 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.

.agents/skills/subagent-dispatch/SKILL.md · 119 lines

How it starts

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

Subagent Dispatch

high-risk/critical モードでタスクをロール別エージェントに分配するスキル。 依存関係グラフを生成し、並列実行可能なタスクを特定する。

目的

マルチエージェント実行を安全に行うために、以下を保証する。

  • 各エージェントが適切なロールを担う(subagent-team-design Skill のロール定義に基づく)
  • 並列実行による競合(同一ファイルの同時変更)を防ぐ
  • 依存関係のある処理が正しい順序で実行される

手順(5 ステップ)

  1. plan.md の Work Breakdown からタスクを列挙する
  2. 各タスクに subagent-team-design Skill のロール定義(6 ロール)からロールを割り当てる
  3. タスク間の依存関係を特定し、依存関係グラフを生成する
  4. 依存がないタスクを「並列実行可能」としてグループ化する
  5. 各タスクに context-packager を適用して Allowed Context を生成する

並列実行判定基準

条件 判定
Allowed Context(Target Files)が重複しない 並列可
共有状態(同一ファイル)を変更する 逐次
reviewee が実装完了するまで reviewer は待機 逐次
同一 pbi-input.md への仕様参照のみ 並列可

入力

  • 実行モード(high-risk / critical)
  • docs/working/TASK-XXXX/plan.md(Work Breakdown)
  • docs/working/TASK-XXXX/test-cases.md
  • .agents/skills/subagent-team-design/SKILL.md §ステップ 2(6 ロール定義)

出力: Dispatch パッケージ

## Dispatch パッケージ

### Mode: {high-risk | critical}

### フェーズ構成

#### Phase A(並列実行可能)

| エージェント | ロール | 担当タスク | Allowed Context |
|------------|--------|----------|----------------|
| Agent-1 | implementer | {タスク名} | {context-packager 出力へのリンク} |
| Agent-2 | implementer | {タスク名} | {context-packager 出力へのリンク} |

#### Phase B(Phase A 完了後)

| エージェント | ロール | 担当タスク | 入力 |
|------------|--------|----------|-----|
| Agent-3 | reviewer | 全実装のレビュー | Phase A の出力 |
| Agent-4 | security-reviewer | セキュリティレビュー | Phase A の出力 |

### 依存関係グラフ(Mermaid)

\`\`\`mermaid
graph TD
  A[planner] --> B[implementer-1]
  A --> C[implementer-2]
  B --> D[reviewer]
  C --> D
  D --> E[Completion Gate]
\`\`\`

### 並列実行判定結果

- Agent-1 と Agent-2: Target Files が重複しない → 並列可
- Agent-3 と Agent-4: 同じ実装を入力として受け取る → 並列可
- Agent-1/2 → Agent-3/4: 実装完了後にレビュー開始 → 逐次

想定 phase

  • WF-03 Solution Design(マルチエージェント設計時)
  • WF-04 Build & Refine(実行前)

カテゴリ

  • multi-agent
  • orchestration

ファイルベース受け渡し(#581 要素3)

subagent へは会話履歴でなく dispatch/ 配下のファイルで渡す:

  • task brief: dispatch/task-NNN-brief.md(context-packager の Allowed Context)
  • report: dispatch/task-NNN-report.md(実行コマンド・テスト結果・変更サマリ・懸念)
  • review package: dispatch/task-NNN-review-package.md(reviewer 入力を brief/report/diff/evidence へのリンクで固定)
  • progress ledger: dispatch/progress-ledger.md(進捗。compaction・モデル切替後はここから再開)

Read the full file on GitHub · 119 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. 3d ago First seen · 119 lines · 58 tokens per session scan A b53e6afff7e7

Subscribe to this mod's changes

subagent-dispatch is a skill published in the GitHub repository s977043/PlanGate (2 stars, last pushed 3d ago), licensed MIT. It adds 58 tokens to every session and 1,674 once invoked, about $0.0003 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

skill-maintenance

Automated skill maintenance tool (v6 — Unified Registry + Snapshots). Full scan: [Orphan] migrate misplaced skills from category dirs OR standalone skills/&lt;name&gt;/ to auto-generated/, [Sync] auto-generated/ vs registry lifecycle diff (new/deleted/revived + description auto-sync via lifecycle field), [Reg]…

jiangyuxue666/hermes-soul-governance · 123 tokens

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

live-preview

Mid-build visual verification loop. Takes screenshots of components during construction, not just after. Catches visual regressions and invisible features before they compound. Requires Playwright or similar screenshot tool.

SethGammon/Citadel · 40 tokens

marshal

Meta-orchestrator that takes any direction — broad, specific, or vague — and autonomously chains skills and context into actionable work. Gathers context from codebase, docs, and memory. Only asks the user when it genuinely cannot proceed. Single-session orchestrator.

SethGammon/Citadel · 56 tokens

wiki

Markdown-first knowledge base where the LLM acts as librarian. Ingests raw sources, compiles and interlinks topic files, self-maintains an index. No vector DB or embeddings required -- uses LLM-native navigation over structured markdown up to 400K words.

SethGammon/Citadel · 56 tokens