Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aaaaqwq avatar

Agent Team Orchestration

  • 87 installs
  • 82 repo stars
  • Updated August 2, 2026
  • aaaaqwq/claude-code-skills

agent-team-orchestration is a Claude Code skill that provides a production playbook for running multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows.

About

agent-team-orchestration is a Claude Code skill that provides a playbook for running multi-agent teams with defined roles, a task lifecycle, handoff protocols, and review gates. A developer uses it to set up teams of two or more agents, route tasks through states, and enforce quality reviews between builders and reviewers. It includes reference files for team setup, task lifecycle, communication, and workflow patterns.

  • Playbook for multi-agent teams with roles (Orchestrator, Builder, Reviewer, Ops) and a defined task lifecycle
  • Task states flow Inbox -> Assigned -> In Progress -> Review -> Done | Failed with orchestrator-owned transitions
  • Documents handoff protocols, review gates, and common pitfalls, with four reference files for setup, lifecycle, communic

Agent Team Orchestration by the numbers

  • 87 all-time installs (skills.sh)
  • Ranked #4,845 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
At a glance

agent-team-orchestration capabilities & compatibility

free

Capabilities
agent orchestration · task routing · handoff protocol · review gates · multi agent coordination
Use cases
orchestration · planning
Pricing
Free
From the docs

What agent-team-orchestration says it does

Production playbook for running multi-agent teams with clear roles, structured task flow, and quality gates.
SKILL.md
Skip the review step and quality degrades within 3-5 tasks. Every time.
SKILL.md
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill agent-team-orchestration

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs87
repo stars82
Last updatedAugust 2, 2026
Repositoryaaaaqwq/claude-code-skills

What it does

A developer uses it to set up and run a team of specialized agents with task routing, handoffs, and review gates.

Who is it for?

Sustained multi-agent team workflows with recurring handoffs and quality gates

Skip if: Single-agent setups, one-off task delegation, or simple question routing

When should I use this skill?

Setting up a team of 2+ agents, defining task routing and lifecycle, creating handoff protocols, or establishing review gates

What you get

  • agent role definitions
  • task lifecycle
  • handoff messages

By the numbers

  • Task lifecycle with 6 states (Inbox, Assigned, In Progress, Review, Done, Failed)
  • 4 reference files: team-setup, task-lifecycle, communication, patterns

Files

SKILL.mdMarkdownGitHub ↗

Agent Team Orchestration

Production playbook for running multi-agent teams with clear roles, structured task flow, and quality gates.

Quick Start: Minimal 2-Agent Team

A builder and a reviewer. The simplest useful team.

1. Define Roles

Orchestrator (you) — Route tasks, track state, report results
Builder agent     — Execute work, produce artifacts

2. Spawn a Task

1. Create task record (file, DB, or task board)
2. Spawn builder with:
   - Task ID and description
   - Output path for artifacts
   - Handoff instructions (what to produce, where to put it)
3. On completion: review artifacts, mark done, report

3. Add a Reviewer

Builder produces artifact → Reviewer checks it → Orchestrator ships or returns

That's the core loop. Everything below scales this pattern.

Core Concepts

Roles

Every agent has one primary role. Overlap causes confusion.

RolePurposeModel guidance
OrchestratorRoute work, track state, make priority callsHigh-reasoning model (handles judgment)
BuilderProduce artifacts — code, docs, configsCan use cost-effective models for mechanical work
ReviewerVerify quality, push back on gapsHigh-reasoning model (catches what builders miss)
OpsCron jobs, standups, health checks, dispatchingCheapest model that's reliable

Read [references/team-setup.md](references/team-setup.md) when defining a new team or adding agents.

Task States

Every task moves through a defined lifecycle:

Inbox → Assigned → In Progress → Review → Done | Failed

Rules:

  • Orchestrator owns state transitions — don't rely on agents to update their own status
  • Every transition gets a comment (who, what, why)
  • Failed is a valid end state — capture why and move on

Read [references/task-lifecycle.md](references/task-lifecycle.md) when designing task flows or debugging stuck tasks.

Handoffs

When work passes between agents, the handoff message includes:

1. What was done — summary of changes/output 2. Where artifacts are — exact file paths 3. How to verify — test commands or acceptance criteria 4. Known issues — anything incomplete or risky 5. What's next — clear next action for the receiving agent

Bad handoff: "Done, check the files." Good handoff: "Built auth module at `/shared/artifacts/auth/`. Run `npm test auth` to verify. Known issue: rate limiting not implemented yet. Next: reviewer checks error handling edge cases."

Reviews

Cross-role reviews prevent quality drift:

  • Builders review specs — "Is this feasible? What's missing?"
  • Reviewers check builds — "Does this match the spec? Edge cases?"
  • Orchestrator reviews priorities — "Is this the right work right now?"

Skip the review step and quality degrades within 3-5 tasks. Every time.

Read [references/communication.md](references/communication.md) when setting up agent communication channels.Read [references/patterns.md](references/patterns.md) for proven multi-step workflows.

Reference Files

FileRead when...
team-setup.mdDefining agents, roles, models, workspaces
task-lifecycle.mdDesigning task states, transitions, comments
communication.mdSetting up async/sync communication, artifact paths
patterns.mdImplementing specific workflows (spec→build→test, parallel research, escalation)

Common Pitfalls

Spawning without clear artifact output paths

Agent produces great work, but you can't find it. Always specify the exact output path in the spawn prompt. Use a shared artifacts directory with predictable structure.

No review step = quality drift

"It's a small change, skip review." Do this three times and you have compounding errors. Every artifact gets at least one set of eyes that didn't produce it.

Agents not commenting on task progress

Silent agents create coordination blind spots. Require comments at: start, blocker, handoff, completion. If an agent goes silent, assume it's stuck.

Not verifying agent capabilities before assigning

Assigning browser-based testing to an agent without browser access. Assigning image work to a text-only model. Check capabilities before routing.

Orchestrator doing execution work

The orchestrator routes and tracks — it doesn't build. The moment you start "just quickly doing this one thing," you've lost oversight of the rest of the team.

When NOT to Use This Skill

  • Single-agent setups — Just follow standard AGENTS.md conventions. Team orchestration adds overhead that solo agents don't need.
  • One-off task delegation — Use sessions_spawn directly. This skill is for sustained workflows with multiple handoffs.
  • Simple question routing — If you're just forwarding a question to a specialist, that's a message, not a workflow.

This skill is for sustained team workflows — recurring collaboration patterns where agents depend on each other's output over multiple tasks.

Related skills

FAQ

What roles does the playbook define?

Orchestrator (route work, track state), Builder (produce artifacts), Reviewer (verify quality), and Ops (cron jobs, standups, health checks).

When should you not use this skill?

For single-agent setups, one-off task delegation, or simple question routing; it is meant for sustained team workflows with multiple handoffs.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.