orchestrate

orchestrate is a skill for Claude Code from morodomi/dev-crew. It costs 104 tokens per session (1,816 once invoked), scanned A, original, MIT.

A workflow manager for a full test-driven development cycle, where tests are written before implementation and code is then improved and reviewed. It coordinates planning, failing tests, implementation, refactoring, review, and committing changes.

In plain words
What is it for?
Use it to manage an entire planned feature cycle by assigning each phase to a specialised agent and checking the result before continuing.
Why use it?
It keeps a multi-step development process moving in the right order and pauses when required evidence or user decisions are missing.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool; mentions Codex.

Part of the dev-crew plugin — 28 skills, 40 agents, 3 hooks shipped together

Good fit Use it to manage an entire planned feature cycle by assigning each phase to a specialised agent and checking the result before continuing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/morodomi/dev-crew/orchestrate
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.

Any agent
npx skills add morodomi/dev-crew --skill orchestrate
Clone the repo
git clone --depth 1 https://github.com/morodomi/dev-crew

Made for: Claude Code.

Or install dev-crew, the plugin that ships this one along with the rest of its 28 skills, 40 agents, 3 hooks.

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 orchestrate

README.md
[![agentmods](https://agentmods.dev/badge/skills/morodomi/dev-crew/orchestrate/github.svg)](https://agentmods.dev/skills/morodomi/dev-crew/orchestrate)
Your own site
<a href="https://agentmods.dev/skills/morodomi/dev-crew/orchestrate"><img src="https://agentmods.dev/badge/skills/morodomi/dev-crew/orchestrate/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orchestrate

Your own site · 80×15
<a href="https://agentmods.dev/skills/morodomi/dev-crew/orchestrate"><img src="https://agentmods.dev/badge/skills/morodomi/dev-crew/orchestrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00104 $0.01816
Opus 5 $0.00052 $0.00908
Sonnet 5 $0.00021 $0.00363
Haiku 4.5 $0.00010 $0.00182

Measured 5d ago against content hash f041d7f1dec7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

orchestrate 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 5d 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.

skills/orchestrate/SKILL.md · 99 lines

How it starts

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

Current State

!ls -t docs/cycles/*.md 2>/dev/null | head -5 || echo "(none)" !git log --oneline -5 2>/dev/null || echo "(no commits)"

TDD Orchestrate (PdM Mode)

TDDサイクル全体をPdM (Product Manager) として管理。plan mode起点でワークフロー制御。

Progress Checklist

orchestrate Progress:
- [ ] Block 0: planファイル / Cycle doc 確認 → 開始地点決定
- [ ] Block 1: sync-plan (with Design Review) → 自律判断
- [ ] Block 2a: RED — Task(red-worker) でテスト作成、失敗確認
- [ ] Block 2b: GREEN — Task(green-worker) で実装、全テストPASS確認
- [ ] Block 2c: REFACTOR — Skill(refactor) で品質改善
- [ ] Block 2c.5: VERIFY — Product Verification (advisory, skip if absent)
- [ ] Block 2d: REVIEW — Skill(review --code) でコードレビュー → 自律判断
- [ ] Block 2e: DISCOVERED — スコープ外項目をissue起票
- [ ] Block 2f: RETROSPECTIVE — Skill(dev-crew:cycle-retrospective) で失敗-成功 insight 抽出
- [ ] Block 3: COMMIT → 完了

PdM の原則

  • 自分で実装・テスト・レビューしない → 専門 Teammate/Subagent に委譲
  • PASS/WARN → 自動進行、BLOCK → 再試行 → ユーザーに報告
  • 曖昧なまま進まない → AskUserQuestion で確認

Workflow

Block 0: Prerequisite Check

0. Codify gate — frontmatter-only scan: for f in docs/cycles/*.md; do awk '/^---$/{c++;next} c==1{print}' "$f" | grep -q 'retro_status: captured' && echo "$f"; done 非空 → Skill(dev-crew:codify-insight) 起動。既定は自動 triage、skill 候補/低確信のみ 1 回確認。exit 0 (全 resolved) → 次へ。exit 1 (abort) → BLOCK、/orchestrate 再起動を案内。空 → no-op。

最初に実行: TaskCreate でタスクを登録。詳細: reference.md

planファイルを起点に開始地点を決定する:

  1. planファイルあり? → YES: 未完了 cycle doc あり? plan-review 記録+architect Post-Transfer Verification 記録あり → Block 2a / sync-plan 済みだが architect 未実施 → Block 1(architect のみ再開、resume gap 対策)/ いずれも未実施 → Progress Log 再開 / cycle doc なし → Block 1 → NO: 新規開始 (plan mode): Skill(dev-crew:spec) → 設計・Test List → Skill(dev-crew:review, args: "--plan") → Step 8(承認前 Codex plan review、plan mode 内で完了済み) → approve → Block 1

Block 1: Sync-Plan (with Design Review)

Codex plan review は承認前(spec Step 8)に完了済みの前提で進行する。順序: sync-plan(転記)→ architect(転記後検証)。

  1. sync-plan: plan の Plan Review Record を Cycle doc へ転記し、Cycle doc を生成
  2. architect: 転記後検証(Post-Transfer Verification)を実施。転記欠落=BLOCK / scope 実質変更=AskUserQuestion で再承認 / 観察のみ=DISCOVERED
  3. Codex不在時: Socrates adversarial reviewwhich codex 失敗時、Socrates を計画への adversarial reviewer として起動。詳細: reference.md
  4. codex_mode / 委譲モード: RED/GREEN の委譲先はユーザー選択を優先。詳細: reference.md
  5. 自律判断: PASS/WARN → Block 2a へ、BLOCK → sync-plan再実行

Read the full file on GitHub · 99 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 99 lines · 104 tokens per session scan A f041d7f1dec7

Subscribe to this mod's changes

orchestrate is a skill published in the GitHub repository morodomi/dev-crew (1 stars, last pushed today), licensed MIT. It adds 104 tokens to every session and 1,816 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-09-03.