From claude-code
Guides coordinating Claude Code agents via experimental Agent Teams, subagents for delegation, or Claude Agent SDK in Python/TypeScript for multi-agent workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code:claude-teamsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Coordinate multiple Claude Code agents working together on shared tasks.
Coordinate multiple Claude Code agents working together on shared tasks.
Activate when:
Three approaches exist for multi-agent coordination, each with different trade-offs:
| Approach | Communication | Coordination | Best For |
|---|---|---|---|
| Agent Teams | Peer-to-peer messaging + shared task list | Team lead + self-coordination | Collaborative work requiring discussion |
| Subagents | Report back to parent only | Parent manages all | Focused delegated tasks |
| Agent SDK | Programmatic message streaming | Developer-controlled | CI/CD, automation, custom apps |
First-party multi-agent coordination. A team lead spawns teammates that work independently with peer-to-peer messaging and a shared task list.
Enable with: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
For setup, configuration, and usage details, see references/agent-teams.md.
Lightweight delegation within a single session. Subagents run in their own context window, complete a task, and return results to the parent.
For subagent types, custom agents, and isolation patterns, see references/subagents.md.
Programmatic multi-agent orchestration in Python and TypeScript using the same tools that power Claude Code.
For SDK setup, agent definitions, and session management, see references/agent-sdk.md.
Proven patterns for file ownership, task decomposition, scaling, and quality gates.
For architecture guidance and case studies, see references/patterns.md.
npx claudepluginhub vinnie357/claude-skills --plugin claude-codeCoordinates multiple Claude Code agents as teams. Covers Agent Teams, Subagents, Agent SDK, and multi-agent orchestration patterns for parallel work and task delegation.
Orchestrates Claude Code agent teams via filesystem protocol and tmux panes for parallel implementation, multi-agent code review, and task dependency management.
Coordinates multiple Claude Code instances as agent teams with shared tasks, inter-agent messaging, and management for parallel research, feature development, debugging, and cross-layer coordination.