agent-teams
Installation
SKILL.md
Agent Teams Orchestrator
Critical Rules
Use Claude Code's NATIVE agent teams feature. Agent teams are a first-class capability built into Claude Code — do NOT simulate them with bash subprocesses or CLI commands.
- DO: Directly describe the team you want to create in natural language. The platform spawns teammates natively.
- DO NOT: Use
bash,subprocess, orclaudeCLI to create parallel agents. - DO NOT: Simulate teams by running multiple shell commands.
When to Use Agent Teams vs Subagents vs Single Session
Agent teams add coordination overhead and use significantly more tokens. Choose wisely:
| Scenario | Use | Why |
|---|---|---|
| Teammates need to share findings and challenge each other | Agent Teams | Peer-to-peer messaging, shared task list |
| Quick, focused workers that report back independently | Subagents | Lower overhead, no inter-agent coordination needed |
| Sequential tasks, same-file edits, many dependencies | Single Session | No parallelism benefit |