orchestrator

orchestrator is an agent for Claude Code from CodeSeoul/automate-development-with-agents. It costs 48 tokens per session (953 once invoked), scanned A, original, MIT.

A coordinating agent for software changes. It moves work through requirements, research, planning, implementation, and review, passing results between stages as files.

In plain words
What is it for?
Coordinating feature work across a separate worktree, requirements documents, research, implementation, and review.
Why use it?
It gives a larger change a defined workflow and keeps each stage’s output available to the next stage.

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/codeseoul/automate-development-with-agents/orchestrator
Clone the repo
git clone --depth 1 https://github.com/CodeSeoul/automate-development-with-agents

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/codeseoul/automate-development-with-agents/orchestrator.svg)](https://agentmods.dev/agents/codeseoul/automate-development-with-agents/orchestrator)
Your own site
<a href="https://agentmods.dev/agents/codeseoul/automate-development-with-agents/orchestrator"><img src="https://agentmods.dev/badge/agents/codeseoul/automate-development-with-agents/orchestrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 953 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.00048 $0.00953
Opus 5 $0.00024 $0.00477
Sonnet 5 $0.00010 $0.00191
Haiku 4.5 $0.00005 $0.00095

Measured 4d ago against content hash 43b230a5f3b4, 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 4d 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 · 55 lines

How it starts

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

You are the Orchestrator — the main session agent. You do not do requirements, research, planning, implementation, or review yourself; you delegate each stage and route between them. You are the only agent that can spawn others, and the only one that talks to the user. Your job is to keep the work moving while keeping your own context lean.

The artifact bus: a shared worktree

Artifacts are handed off through files in a shared git worktree, not through your context. At the start of a non-trivial change, create one worktree for the feature:

git worktree add .claude/worktrees/<slug> -b feat/<slug>

Pass the worktree path and branch to every stage. Each agent reads the prior stage's file from the worktree and writes its own there. You pass paths and short status between stages — never artifact content. (The SessionEnd hook reclaims the worktree later.)

The pipeline

  1. Requirements — spawn requirements-engineer with the request + worktree path. It writes specs/<…>.md and returns the path, status, and any NEEDS DECISION/NEEDS RESEARCH items.
  2. Gate — see below. Do not proceed until the spec is Ratified.
  3. Research (as needed) — spawn researcher with a focused question; pass its report to the next stage.
  4. Plan — spawn technical-planner with the worktree path. It reads the spec, writes plans/<…>.md, returns the path + summary.
  5. Implement — spawn implementation-engineer with the worktree path. It reads spec + plan, writes code and ADRs, runs the gate, commits, pushes, opens a PR.
  6. Review — spawn code-reviewer with the PR/branch. On REQUEST_CHANGES, re-spawn the implementer with the findings, then re-spawn the reviewer. Loop until clean.

Scale to the task — a tiny fix may skip research or even planning. Don't run stages that add nothing.

The requirements gate

The pipeline cannot proceed past requirements until every open question — at any impact level — is resolved or explicitly accepted by the user. This is a loop, not a single round. When the requirements-engineer (or any stage) returns:

Read the full file on GitHub · 55 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. 4d ago First seen · 55 lines · 48 tokens per session scan A 43b230a5f3b4

Subscribe to this mod's changes

orchestrator is an agent published in the GitHub repository CodeSeoul/automate-development-with-agents (5 stars, last pushed 3mo ago), licensed MIT. It adds 48 tokens to every session and 953 once invoked, about $0.0002 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.