agent-orchestration

agent-orchestration is a skill for Claude Code, Codex from shahtuyakov/claude-setup. It costs 46 tokens per session (1,691 once invoked), scanned A, original, MIT.

A set of patterns for coordinating several coding agents through a central hub. The hub is the main conversation that routes tasks between agents.

In plain words
What is it for?
It handles single-agent and multi-agent delegation requests, starts dependent or parallel tasks in the right order, and defines how agents communicate through structured messages.
Why use it?
It gives agents a shared format for requesting help and makes dependencies, parallel work, and returned results easier to manage.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit It handles single-agent and multi-agent delegation requests, starts dependent or parallel tasks in the right order, and defines how agents communicate through structured messages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shahtuyakov/claude-setup/agent-orchestration
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 shahtuyakov/claude-setup --skill agent-orchestration
Clone the repo
git clone --depth 1 https://github.com/shahtuyakov/claude-setup

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 agent-orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/shahtuyakov/claude-setup/agent-orchestration/github.svg)](https://agentmods.dev/skills/shahtuyakov/claude-setup/agent-orchestration)
Your own site
<a href="https://agentmods.dev/skills/shahtuyakov/claude-setup/agent-orchestration"><img src="https://agentmods.dev/badge/skills/shahtuyakov/claude-setup/agent-orchestration/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 agent-orchestration

Your own site · 80×15
<a href="https://agentmods.dev/skills/shahtuyakov/claude-setup/agent-orchestration"><img src="https://agentmods.dev/badge/skills/shahtuyakov/claude-setup/agent-orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,691 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.00046 $0.01691
Opus 5 $0.00023 $0.00846
Sonnet 5 $0.00009 $0.00338
Haiku 4.5 $0.00005 $0.00169

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

Security

Grade A, and why

agent-orchestration 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 9d 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/agent-orchestration/SKILL.md · 309 lines

How it starts

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

Agent Orchestration Skill

Overview

This skill provides patterns for orchestrating multi-agent workflows using the Hub Architecture. In this pattern:

  • Subagents cannot directly spawn other subagents
  • The main conversation acts as a hub that routes requests between agents
  • Agents communicate via structured delegation requests

Delegation Request Protocol

Single Agent Request

When an agent needs help from one other agent:

{
  "delegation_request": {
    "agent": "database",
    "reason": "Need users schema before implementing auth",
    "prompt": "Create users table with id, email, password_hash, created_at",
    "blocking": true
  }
}
Field Description
agent Target agent: database, backend, frontend, ios, devops, designer
reason Why this delegation is needed
prompt Specific instructions for the target agent
blocking If true, wait for completion before continuing

Multi-Agent Request

When orchestrating multiple agents (typically from architect):

{
  "delegation_request": {
    "type": "sequential",
    "agents": [
      {
        "agent": "database",
        "task_id": "auth-001",
        "prompt": "Create users and sessions tables",
        "depends_on": null
      },
      {
        "agent": "backend",
        "task_id": "auth-001",
        "prompt": "Implement auth endpoints",
        "depends_on": "database"
      },
      {
        "agent": "frontend",
        "task_id": "auth-001",
        "prompt": "Create login/register forms",
        "depends_on": "backend"
      },
      {
        "agent": "ios",
        "task_id": "auth-001",
        "prompt": "Create auth screens",
        "depends_on": "backend"
      }
    ],
    "parallel_groups": [
      ["frontend", "ios"]
    ],
    "context_file": ".agents/architect/current-plan.md",
    "return_to": "architect"
  }
}
Field Description
type sequential, parallel, or mixed
agents Array of agent tasks
depends_on Agent that must complete first (null = no dependency)
parallel_groups Arrays of agents that can run concurrently
context_file Shared context file for all agents (JSON format: .agents/architect/current-plan.json)
return_to Agent to receive aggregated results

Read the full file on GitHub · 309 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. 9d ago First seen · 309 lines · 46 tokens per session scan A 2771a4578011

Subscribe to this mod's changes

agent-orchestration is a skill published in the GitHub repository shahtuyakov/claude-setup (13 stars, last pushed 8mo ago), licensed MIT. It adds 46 tokens to every session and 1,691 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-30.