orchestrator

orchestrator is a skill for Claude Code from ivy00johns/Skill-Madness. It costs 212 tokens per session (9,131 once invoked), scanned A, original, MIT.

A coordinator for software projects that split work among multiple coding agents. It reads the plan, assigns separate roles, combines their work, and checks the result before shipping.

In plain words
What is it for?
Use it for multi-agent builds with separate implementation roles, machine-readable contracts, parallel work, and a quality-assurance gate. It is not intended for ordinary single-agent tasks.
Why use it?
It organizes handoffs and integration when several agents are working on one build, so the final result is checked against shared requirements.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; mentions Claude Code.

Part of the skill-madness plugin — 80 skills shipped together

Good fit Use it for multi-agent builds with separate implementation roles, machine-readable contracts, parallel work, and a quality-assurance gate. It is not intended for ordinary single-agent tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ivy00johns/skill-madness/orchestrator
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 ivy00johns/Skill-Madness --skill orchestrator
Clone the repo
git clone --depth 1 https://github.com/ivy00johns/Skill-Madness

Made for: Claude Code.

Or install skill-madness, the plugin that ships this one along with the rest of its 80 skills.

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/skills/ivy00johns/skill-madness/orchestrator/github.svg)](https://agentmods.dev/skills/ivy00johns/skill-madness/orchestrator)
Your own site
<a href="https://agentmods.dev/skills/ivy00johns/skill-madness/orchestrator"><img src="https://agentmods.dev/badge/skills/ivy00johns/skill-madness/orchestrator/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 orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/ivy00johns/skill-madness/orchestrator"><img src="https://agentmods.dev/badge/skills/ivy00johns/skill-madness/orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 212 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,131 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00212 $0.09131
Opus 5 $0.00106 $0.04566
Sonnet 5 $0.00042 $0.01826
Haiku 4.5 $0.00021 $0.00913

Measured today against content hash 9c44a8bfd528, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

orchestrator scanned grade A with 1 finding 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 today.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

13. **Post-build verification** — in this order: (a) confirm the dev stack is actually listening (`curl -fsS http://localhost:<port>/` or `lsof -i :<port>` — a "validation pass" against a dead port is the most expensive
skills/orchestrator/SKILL.md · 311 lines

How it starts

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

Orchestrator

Tradeoff: Biases toward parallelism and explicit handoffs. For single-agent work or fast iteration, use direct prompting.

When this skill applies

This skill assumes a contract-first multi-agent build model:

  • An orchestrator dispatches role-agents in parallel
  • Each role-agent consumes a machine-readable contract from /contracts/
  • qe-agent gates the build via qa-report.json

For single-agent or ad-hoc work, this skill is not the right tool.

Composition

The orchestrator is the conductor — not the only player. It composes with three groups of skills:

  • INVOKES at the right phase: nano-banana (seed imagery), ui-ux-pro-max + frontend-design (UI quality), ux-review + render-sanity (post-build render-level validation), design-token-guard (post-build source-level gate — no inline styles / hardcoded colors bypassing tokens), class-extraction-guard (post-build source-level organization gate — repeated utility-class soup extracted into named classes), repo-deep-dive (reference research), llm-wiki (project knowledge base), mermaid-charts (architecture diagrams), deployment-checklist (ship readiness).
  • DISPATCHES role-agents in parallel: backend-agent, frontend-agent, infrastructure-agent, db-migration-agent, security-agent, observability-agent, performance-agent, docs-agent, qe-agent.
  • DELEGATES diff/code review to the external /code-review CLI: during a build, the Phase 4 diff review pass is the external /code-review CLI, NOT a spawned code-review-agent. The in-repo code-review-agent skill is not a default build phase — invoke it only deliberately for a standalone, repo-aware review. See references/mission-interpretation.md.
  • DOES NOT preempt: brainstorming, plan-builder, writing-plans, claude-design-brief, ui-brief, feature-dev, claude-mem:*. If any of these belong before the build starts, let them run first — orchestrator picks up from the artifacts they produce.
  • RUNS the validation phases AS LOOPS (not one-shot checks) — the canonical loop-harness mapping: the wave gate and the QA gate are convergence loops. fix-until-green is the contract for driving install/typecheck/test/QA red→green without cheating the gate — the QE inner loop and the wave-gate driver; loop-controller is the underlying harness (iterate → evaluate → guardrail → stop) whose no-progress/oscillation guardrail is the 3-failure circuit breaker and whose iteration/budget caps bound wave-gate retries. Under native Agent Teams, orchestrator-task-loop drives the whole-task-list OUTER loop (drain the shared task list until every task is completed + passing its TaskCompleted gate, feeding idle workers via TeammateIdle), with fix-until-green as each task's INNER loop. All three are disable-model-invocation: true — you explicitly dispatch them; they never auto-trigger because a test happened to fail. See skills/loops/.
  • DISPATCHES four more build loops when the mission calls for them: contract-conformance-loop (build-until-spec, graded by a fresh-context evaluator), coverage-loop (a test-coverage target), perf-loop (a performance budget), and migration-loop (an enumerated wide-refactor set). All four are loop-controller configs and disable-model-invocation: true — the mission text is their trigger, and you are their dispatcher. Dispatch table: references/phase-guide.md (Phase 13's Optional build loops).

Read the full file on GitHub · 311 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. today Changed · +2 lines 9c44a8bfd528
  2. 9d ago First seen · 309 lines · 212 tokens per session scan A 864b701d85c9

Subscribe to this mod's changes

orchestrator is a skill published in the GitHub repository ivy00johns/Skill-Madness (11 stars, last pushed today), licensed MIT. It adds 212 tokens to every session and 9,131 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens