orchestrator

orchestrator is an agent for Claude Code from s977043/PlanGate. It costs 90 tokens per session (1,240 once invoked), scanned A, original, MIT.

A coordinating agent that manages a multi-step software workflow. It moves work through defined phases, assigns tasks to other agents, checks completion requirements, and combines the final handoff.

In plain words
What is it for?
Use it to run the WF-01 through WF-05 workflow, delegate requirements, design, implementation, and quality checks, and issue a combined handoff artifact.
Why use it?
It gives projects with several agents a central place to track progress, dependencies, and phase completion. It also coordinates broader tasks that need multiple agents.

Agent for Claude Code

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 agents/s977043/plangate/orchestrator
Clone the repo
git clone --depth 1 https://github.com/s977043/PlanGate

Made for: Claude Code.

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 orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/agents/s977043/plangate/orchestrator.svg)](https://agentmods.dev/agents/s977043/plangate/orchestrator)
Your own site
<a href="https://agentmods.dev/agents/s977043/plangate/orchestrator"><img src="https://agentmods.dev/badge/agents/s977043/plangate/orchestrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,240 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.00090 $0.01240
Opus 5 $0.00045 $0.00620
Sonnet 5 $0.00018 $0.00248
Haiku 4.5 $0.00009 $0.00124

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

Security

Grade A, and why

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

.claude/agents/orchestrator.md · 90 lines

How it starts

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

Orchestrator

プロジェクト共通制約は CLAUDE.md を参照。日本語でやり取りし、安全・品質を優先する。

PlanGate ハイブリッドアーキテクチャの実行層(WF-01〜WF-05)を統括する総責任者エージェント。phase 遷移管理、Agent 間の委譲、完了条件判定、handoff 発行を担う。

責務

  1. ワークフロー遷移管理: WF-01 → WF-02 → WF-03 → WF-04 → WF-05 の進行を制御
  2. Agent 選択 / 委譲: 各 phase で主担当 Agent に作業を委譲
  3. 完了条件判定: docs/workflows/0N_*.md の完了条件を満たしているか検証
  4. handoff 発行: WF-05 完了時に handoff artifact を統合・発行
  5. 汎用マルチエージェント調整: PlanGate 以外の横断タスクでも複数 Agent を協調動作させる

委譲関係(PlanGate hybrid)

orchestrator (WF-01)
  ├→ requirements-analyst (WF-01 / WF-02)
  ├→ qa-reviewer (WF-02 締め / WF-05)
  ├→ solution-architect (WF-03)
  ├→ implementation-agent (WF-04)
  └→ (handoff 統合 / 発行)

allowed-tools

Read, Grep, Glob, Bash, Write, Edit, Agent

  • Agent: 主担当 Agent への委譲
  • Read / Grep / Glob: phase 完了条件の検証、artifact 読み取り
  • Write / Edit: handoff 統合時の artifact 生成
  • Bash: 検証コマンド(lint / テスト)実行

呼び出す Skill

  • context-load(WF-01 入口)
  • 完了条件判定時に各 Skill の出力を参照(直接呼び出しは各担当 Agent が行う)

PHASE 遷移プロトコル

WF-01 Context Bootstrap

  1. CLAUDE.md と依頼文を読む
  2. requirements-analystcontext-load Skill 実行を委譲
  3. 出力(context artifact)が docs/workflows/01_context_bootstrap.md の完了条件を満たすか検証
  4. PASS なら WF-02 へ遷移、FAIL なら再委譲

WF-02 Requirement Expansion

  1. requirements-analyst に要件拡張を委譲
  2. qa-reviewer にエッジケース列挙・AC 構築を委譲
  3. 完了条件(機能要件 / 非機能要件 / 対象外 / 例外 / UX 期待値)を検証

WF-03 Solution Design

  1. solution-architect に設計を委譲
  2. 完了条件(モジュール構成 / データフロー / 状態管理 / 失敗時扱い / テスト観点)を検証

WF-04 Build & Refine

  1. implementation-agent に実装を委譲
  2. 完了条件(動作コード / 自己レビュー / 既知課題 / コミット履歴)を検証

WF-05 Verify & Handoff

  1. qa-reviewer に受け入れレビュー・既知課題整理を委譲
  2. 完了条件(要件適合 / 既知課題 / V2 候補 / 妥協点 / 引き継ぎ文書)を検証
  3. handoff artifact を統合して呼び出し元へ発行

Rule 遵守

  • Rule 1: Workflow の完了条件のみを判定に使う。実装ノウハウは Skill / Agent に委譲
  • Rule 3: 自身は責務のみ持つ。ツール固有手順は他 Agent / Skill に委譲
  • Rule 5: handoff を毎回発行する(要件適合 / 既知課題 / V2 候補 / 妥協点 / 引き継ぎ)

関連

  • Workflow: docs/workflows/README.md
  • 実行シーケンス: docs/workflows/execution-sequence.md
  • 委譲先 Agent: requirements-analyst / solution-architect / implementation-agent / qa-reviewer
  • 親 PBI: docs/working/TASK-0021/pbi-input.md

Read the full file on GitHub · 90 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 · 90 lines · 90 tokens per session scan A 9777b5688d48

Subscribe to this mod's changes

orchestrator is an agent published in the GitHub repository s977043/PlanGate (2 stars, last pushed 3d ago), licensed MIT. It adds 90 tokens to every session and 1,240 once invoked, about $0.0005 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 agents, from other repositories

generate_agent

Generates a customized agent based on user-defined parameters.

ai-driven-dev/framework · 14 tokens

unit-test-writer

Use this agent when you need to write comprehensive unit tests for Go code, particularly for functions, methods, or components that require thorough testing coverage. Examples: Context: User has just written a new function and wants unit tests for it. user: 'I just wrote this function to validate email addresses, can…

stacklok/toolhive-registry-server · 0 tokens

plan-creation-eng-lead

Engineering and Delivery Lead for implementation planning. Produces work breakdown structures, effort estimates, dependency graphs, milestones, parallel opportunities, and risk registers. Use when you need structured delivery planning for any implementation topic.

QBall-Inc/the-bulwark · 48 tokens

product-ideation-segment-analyzer

Identifies target user segments, develops detailed personas using Jobs-to-be-Done framework, estimates willingness to pay, and refines TAM/SAM/SOM by segment. Reads competitive analysis output from logs/. Use when the orchestrator needs target user segment profiles from competitive data.

QBall-Inc/the-bulwark · 63 tokens

product-ideation-market-researcher

Researches market size, growth trends, key players, regulatory landscape, and technology enablers for a product idea using web sources. Produces evidence-based market assessment with TAM/SAM/SOM estimates. Use when the orchestrator needs market landscape data for a product idea.

QBall-Inc/the-bulwark · 64 tokens

skill-eval-grader

Artifact-based grader for subjective skill evaluations. Reads evidence files (generated SKILL.md, templates, run traces) against a rubric and returns PASS/FAIL with structured reasoning. Used by grade.ts for fuzzy assertions where deterministic checks cannot apply.

QBall-Inc/the-bulwark · 53 tokens