agent-teams
Coordinate Claude Code Agent Teams through filesystem-based protocol. Use.
npx skills add majiayu000/claude-skill-registry --skill agent-teams --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
## Table of Contents - [Overview](#overview) - [When to Use](#when-to-use) - [Prerequisites](#prerequisites) - [Protocol Architecture](#protocol-architecture) - [Quick Start](#quick-start) - [Coordination Workflow](#coordination-workflow) - [Module Reference](#module-reference) - [Integration with Conjure](#integration-with-conjure) - [Troubleshooting](#troubleshooting) - [Exit Criteria](#exit-criteria) # Agent Teams Coordination ## Overview Claude Code Agent Teams enables multiple Claude CLI processes to collaborate on shared work through a filesystem-based coordination protocol. Each teammate runs as an independent `claude` process in a tmux pane, communicating via JSON files guarded by `fcntl` locks, with no database, daemon, or network layer. This skill provides the patterns for orchestrating agent teams effectively. ## When To Use - Parallel implementation across multiple files or modules - Multi-agent code review (one agent reviews, another implements fixes) - Large refactoring requiring coordinated changes across subsystems - Tasks with natural parallelism that benefit from concurrent agents ## When NOT To Use - Single-file changes or small tasks (overhead exceeds benefit) -
- Table of Contents
- Overview
- When To Use
- When NOT To Use
- Prerequisites
- Protocol Architecture
- Quick Start
- 1. Create a Team
- 2. Spawn Teammates
- 3. Create Tasks with Dependencies
- 4. Coordinate via Messages
- Coordination Workflow
- Crew Roles
- Team Formation
Verify Claude Code CLI claude --version Verify tmux (required for split-pane mode) tmux -V Enable experimental feature (set by spawner automatically) export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 Programmatic team setup (via MCP or direct API) Team config written to ~/.claude/teams/<team-name>/config.json claude --agent-id "backend@my-team" \
What does the agent-teams skill do?
Coordinate Claude Code Agent Teams through filesystem-based protocol. Use.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-teams --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
