Agent skill · AI & Agents

agent-teams

Coordinate Claude Code Agent Teams through filesystem-based protocol. Use.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agent-teams --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/agent/agent-teams/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## 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) -

What's inside
Steps it walks through
  1. Table of Contents
  2. Overview
  3. When To Use
  4. When NOT To Use
  5. Prerequisites
  6. Protocol Architecture
  7. Quick Start
  8. 1. Create a Team
  9. 2. Spawn Teammates
  10. 3. Create Tasks with Dependencies
  11. 4. Coordinate via Messages
  12. Coordination Workflow
  13. Crew Roles
  14. Team Formation
Ships with 1 file
  • metadata.json
Commands it runs
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" \
More from claude-skill-registry
All skills →
About this skill
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.

Keep going