with one click
agent-teams
// Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks
// Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | agent-teams |
| description | Spawn and coordinate Claude Code Agent Teams (experimental) — parallel subagents for complex multi-domain tasks |
| tags | ["skill","orchestration","agent-teams"] |
| triggers | ["agent teams","use agent teams","run agent teams"] |
Enabled via
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1in~/.claude/settings.json. Windows constraint:teammateMode: "in-process"only — no subprocess spawning.
Agent Teams are worth the coordination overhead only when:
Do NOT use for:
Natural language trigger — no slash command needed. Just describe the parallel need:
"Spawn a teammate using the security-reviewer agent to audit the auth flow while I implement the new endpoint."
"Run the code-reviewer and debugger agents in parallel on this PR."
Claude Code will automatically spawn the teammate agent with the appropriate definition from .claude/agents/.
.claude/agents/)| File | Agent | Model | Best For |
|---|---|---|---|
security-reviewer.md | security-reviewer | sonnet | Auth flaws, RLS gaps, credential exposure, OWASP checks |
researcher.md | researcher | sonnet | Multi-source research, doc lookup, competitive analysis |
code-reviewer.md | code-reviewer | sonnet | Two-pass structural + adversarial code review |
content-writer.md | content-writer | opus | Platform content in CC's voice (X, LinkedIn, IG, TikTok) |
debugger.md | debugger | sonnet | Root-cause debugging, 5 Whys, bisect regressions |
architect.md | architect | opus | System design, DB schema, API contracts, ADRs |
Bravo writes a scoped task to a temp file → teammate reads it → teammate writes output to a result file → Bravo reads result.
tmp/teammate-task-{agent}-{timestamp}.md ← Bravo writes the task
tmp/teammate-result-{agent}-{timestamp}.md ← Teammate writes findings
For longer parallel runs, use .agents/plans/active-{task}.md as a shared task list both agents can read. Bravo owns writes; teammate reads only.
Bravo: Implements the feature
Teammate: code-reviewer audits existing changes in parallel
Result: Review ready when implementation is done — no waiting
Bravo: Ships the feature (test → changelog → PR)
Teammate: security-reviewer audits auth surface in parallel
Result: Security sign-off attached to the PR
Bravo: Researches competitive landscape (researcher agent)
Teammate: architect drafts system design while research runs
Result: Design informed by findings, both complete simultaneously
Bravo: Implements short-term workaround to unblock CC
Teammate: debugger traces root cause in parallel
Result: Fix applied now, root cause known for proper patch later
teammateMode: "in-process" — teammates share the same process, no subprocess isolationisolation: worktree but this is advisory — use with care on shared files)This skill extends skills/task-routing/SKILL.md. When task routing classifies a task as COMPLEX or ARCHITECTURAL, consider splitting across teammates:
| Routing Tier | Team Configuration |
|---|---|
| MODERATE | Optional: spawn code-reviewer in parallel |
| COMPLEX | Recommended: Bravo (frontend/orchestration) + teammate (backend/security) |
| ARCHITECTURAL | Recommended: architect teammate drafts spec, Bravo implements |