agent-teams

Solid

Set up and orchestrate Claude Code agent teams - multiple Claude Code instances working together with shared tasks, inter-agent messaging, and centralized management. Use when the user wants to (1) create or start an agent team for parallel work, (2) configure agent team settings like display mode or teammate mode or permissions, (3) coordinate teammates for code review or debugging or feature development or research, (4) understand when to use agent teams vs subagents, (5) troubleshoot agent team issues. Triggers include mentions of "agent team", "team of agents", "parallel agents", "teammates", "split pane", "tmux teammates", "delegate mode", "spawn teammates", or wanting multiple Claude instances collaborating.

AI & Automation 6 stars 0 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
28
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Agent Teams Coordinate multiple Claude Code instances working together. One session acts as team lead, spawning and coordinating teammates that work independently in their own context windows and communicate directly with each other. ## Quick Setup ### 1. Enable the feature (experimental, disabled by default) Add to `settings.json`: ```json { "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" } } ``` Or set the environment variable directly: ```bash export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 ``` ### 2. Start a team Tell Claude to create an agent team with a natural language prompt describing the task and team structure: ``` Create an agent team to review PR #142. Spawn three reviewers: - One focused on security implications - One checking performance impact - One validating test coverage ``` Claude creates the team, spawns teammates, coordinates work, and synthesizes results. ## When to Use Agent Teams vs Subagents | Criteria | Use Subagents | Use Agent Teams | |----------|--------------|-----------------| | Workers need to talk to each other | No | Yes | | Task is focused, result-only matters | Yes | No | | Complex work requiring discussion | No | Yes | | Token budget is tight | Yes (lower cost) | No (higher cost) | | Workers need shared task list | No | Yes | Best use cases for agent teams: - **Research and review**: parallel investigation of different aspects - **New modules/features**: each teammate owns a separate piece - **Debugging competin...

Details

Author
DmitriyYukhanov
Repository
DmitriyYukhanov/claude-plugins
Created
6 months ago
Last Updated
4 days ago
Language
Shell
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

agent-teams

Configure Claude Code agent teams (implicit team, SendMessage, TaskUpdate). Use when running parallel agents, coordinating with messaging, or setting up a lead/teammate architecture.

48 Updated today
laurigates
AI & Automation Solid

agent-teams

Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team sizing, task decomposition, and when to use teams vs sub-agents vs worktrees.

2,651 Updated 6 days ago
rohitg00
AI & Automation Listed

agent-team

Auto-spawn a coordinated team of Claude Code teammates (each with own context, can DM each other, share a task list) when the user describes work that spans multiple domains and would benefit from specialists working in parallel with feedback loops. Triggers on phrases like "create a website for X", "build me an app for Y", "spin up a landing page for Z", "make me a site about W", "I need this built end-to-end", "review this from multiple angles", "debug this with competing hypotheses", or any request that implies multi-specialist parallel work with a quality loop. Auto-classifies the request, picks team composition + model-per-role + file ownership + hand-off graph, then spawns. Skip for single-domain tasks (use matching specialist skill), sequential pipelines (use subagents), or simple one-shot work. Requires the host's multi-agent team feature to be enabled; on Claude Code that means setting CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 in settings.json.

1 Updated today
donatassimkus