agent-teams
Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams
pinned to #d7cf7dcupdated 2 weeks ago
Ask your AI client: “install plugins/agent-teams”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install plugins/agent-teamsmetahub onboarded this repo on the author's behalf.
If you own github.com/wshobson/agents on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
37,769
Last commit
2 weeks ago
Latest release
published
- #agent-skills
- #agentic-ai
- #agents
- #ai-agents
- #anthropic
- #automation
- #claude-code
- #claude-code-plugins
- #codex-cli
- #copilot
- #cursor
- #cursor-rules
- #developer-tools
- #gemini-cli
- #mcp
- #multi-agent
- #opencode
- #orchestration
- #prompt-engineering
- #workflows
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.d7cf7dc· 2 weeks ago
Kind-specific
31Plugin: manifest fields complete
Plugin: bundled artifacts presentwarn
Couldn't find a skills/ subdir or an MCP server config inside the plugin
A plugin is most useful when it bundles ≥ 1 skill or an MCP server.
Plugin: bundle shape
empty bundle
Plugin: manifest location
manifest at plugin.json
Release history
1- releasecurrentd7cf7dcwarn2 weeks ago
Contents
Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's experimental Agent Teams feature.
Setup
Prerequisites
- Enable the experimental Agent Teams feature:
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
- Configure teammate display mode in your
~/.claude/settings.json:
{
"teammateMode": "tmux"
}
Available display modes:
"tmux"— Each teammate runs in a tmux pane (recommended)"iterm2"— Each teammate gets an iTerm2 tab (macOS only)"in-process"— Teammates run in the same process (default)
Installation
First, add the marketplace (if you haven't already):
/plugin marketplace add wshobson/agents
Then install the plugin:
/plugin install agent-teams@claude-code-workflows
Features
- Preset Teams — Spawn pre-configured teams for common workflows (review, debug, feature, fullstack, research, security, migration)
- Multi-Reviewer Code Review — Parallel review across security, performance, architecture, testing, and accessibility dimensions
- Hypothesis-Driven Debugging — Competing hypothesis investigation with evidence-based root cause analysis
- Parallel Feature Development — Coordinated multi-agent implementation with file ownership boundaries
- Parallel Research — Multiple Explore agents investigating different questions or codebase areas simultaneously
- Security Audit — Comprehensive parallel security review across OWASP, auth, dependencies, and configuration
- Migration Support — Coordinated codebase migration with parallel implementation streams and correctness verification
- Task Coordination — Dependency-aware task management with workload balancing
- Team Communication — Structured messaging protocols for efficient agent collaboration
Commands
| Command | Description |
|---|---|
/team-spawn | Spawn a team using presets or custom composition |
/team-status | Display team members, tasks, and progress |
/team-shutdown | Gracefully shut down a team and clean up resources |
/team-review | Multi-reviewer parallel code review |
/team-debug | Competing hypotheses debugging with parallel investigation |
/team-feature | Parallel feature development with file ownership |
/team-delegate | Task delegation dashboard and workload management |
Agents
| Agent | Role | Color |
|---|---|---|
team-lead | Team orchestrator — decomposes work, manages lifecycle, synthesizes results | Blue |
team-reviewer | Multi-dimensional code reviewer — operates on assigned review dimension | Green |
team-debugger | Hypothesis investigator — gathers evidence to confirm/falsify assigned hypothesis | Red |
team-implementer | Parallel builder — implements within strict file ownership boundaries | Yellow |
Skills
| Skill | Description |
|---|---|
team-composition-patterns | Team sizing heuristics, preset compositions, agent type selection |
task-coordination-strategies | Task decomposition, dependency graphs, workload monitoring |
parallel-debugging | Hypothesis generation, evidence collection, result arbitration |
multi-reviewer-patterns | Review dimension allocation, finding deduplication, severity calibration |
parallel-feature-development | File ownership strategies, conflict avoidance, integration patterns |
team-communication-protocols | Message type selection, plan approval workflow, shutdown protocol |
Quick Start
Multi-Reviewer Code Review
/team-review src/ --reviewers security,performance,architecture
Spawns 3 reviewers, each analyzing the codebase from their assigned dimension, then consolidates findings into a prioritized report.
Hypothesis-Driven Debugging
/team-debug "API returns 500 on POST /users with valid payload" --hypotheses 3
Generates 3 competing hypotheses, spawns investigators for each, collects evidence, and presents the most likely root cause with a fix.
Parallel Feature Development
/team-feature "Add user authentication with OAuth2" --team-size 3 --plan-first
Decomposes the feature into work streams with file ownership boundaries, gets your approval, then spawns implementers to build in parallel.
Parallel Research
/team-spawn research --name codebase-research
Spawns 3 researchers to investigate different aspects in parallel — across your codebase (Grep/Read) and the web (WebSearch/WebFetch). Each reports findings with citations.
Security Audit
/team-spawn security
Spawns 4 security reviewers covering OWASP vulnerabilities, auth/access control, dependency supply chain, and secrets/configuration. Produces a consolidated security report.
Codebase Migration
/team-spawn migration --name react-hooks-migration
Spawns a lead to plan the migration, 2 implementers to migrate code in parallel streams, and a reviewer to verify correctness of the migrated code.
Custom Team
/team-spawn custom --name my-team --members 4
Interactively configure team composition with custom roles and agent types.
Best Practices
- Start with presets — Use
/team-spawn review,/team-spawn debug, or/team-spawn featurebefore building custom teams - Use
--plan-first— For feature development, always review the decomposition before spawning implementers - File ownership is critical — Never assign the same file to multiple implementers; use interface contracts at boundaries
- Monitor with
/team-status— Check progress regularly and use/team-delegate --rebalanceif work is uneven - Graceful shutdown — Always use
/team-shutdownrather than killing processes manually - Keep teams small — 2-4 teammates is optimal; larger teams increase coordination overhead
- Use Shift+Tab — Claude Code's built-in delegate mode (Shift+Tab) complements these commands for ad-hoc delegation
Reviews
No reviews yet. Be the first.
Related
before-you-build
Production-ready workflow orchestration with 91 marketplace plugins, 199 local specialized agents, and 162 local skills - optimized for granular installation and minimal token usage
youtube-transcribe-skill
Extract subtitles/transcripts from YouTube videos via CLI or browser automation
cursor
Delegate implementation, web research, and codebase exploration to the Cursor CLI (headless agent -p). Part of cc-multi-cli-plugin. Requires the `multi` plugin.
mh install plugins/agent-teams