ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Claude Code Teams

Skill by matthew-a-gordon

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/matthew-a-gordon/claude-code-teams
Or

name: claude-code-teams description: Production skill for orchestrating Claude Code's native agent teams feature. Use when: (1) Multi-lens reviews, (2) Competing hypotheses debugging, (3) Full-stack features, (4) Architecture debates, (5) Cross-domain investigations. metadata: openclaw: emoji: "🎭" requires: bins: ["claude"] env: ["CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS"] version: "1.0.0" author: "Matthew Gordon" tags: ["agents", "teams", "claude-code", "orchestration", "coordination"]

Claude Code Agent Teams

Orchestrate multiple Claude Code agents working together on complex tasks. Agents coordinate through a shared task list, message each other directly, and work in parallel on independent scopes.

When to Use

Use for parallel independent work:

  • Multi-lens code reviews (security, performance, tests in parallel)
  • Debugging with competing hypotheses (test theories simultaneously)
  • Full-stack features (frontend/backend/tests by separate specialists)
  • Architecture decisions (adversarial debate produces stronger ADRs)
  • Cross-domain investigations (bottleneck analysis across systems)
  • Data-parallel work (inventory classification, bulk refactoring)

Don't use for:

  • Sequential work with tight dependencies
  • Same-file edits (conflict risk)
  • Simple tasks (coordination overhead > benefit)
  • Learning/exploration (single agent with full context is better)

Rule of thumb: Teams multiply token cost 3-4x. Use only when parallelization benefit exceeds coordination overhead.

Quick Start

1. Enable Feature

Environment variable:

export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

Or settings file (~/.claude/settings.json):

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

2. Validate Setup

./scripts/validate-setup.sh

Checks for: env var set, claude CLI available, tmux installed (optional).

3. Pick Template

TemplateUse Case
parallel-review.mdMulti-lens code review (security + performance + tests)
competing-hypotheses.mdDebug by testing competing theories
fullstack-feature.mdFrontend/backend/tests coordination
architecture-decision.mdADR with adversarial debate
bottleneck-analysis.mdCross-domain performance investigation
inventory-classification.mdData-parallel classification/refactoring

Each template includes: when to use, team structure, copy-paste spawn prompt, expected outcomes.

4. Spawn Team

claude --pty
# Paste spawn prompt from template

Monitor with ./scripts/team-monitor.sh (separate terminal) or Ctrl+T (in Claude Code).

Core Principles

Metadata

Stars1401
Views1
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-matthew-a-gordon-claude-code-teams": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.