Skip to content
This repository was archived by the owner on Nov 30, 2025. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

113 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Claude Code Team

NPM Version GitHub Actions Workflow Status GitHub License

A collaborative AI coding tool that brings multiple Claude Code instances together to work on complex coding tasks.

Claude Code Team Screenshot

Contents

What is Claude Code Team?

Claude Code Team creates a team of three AI assistants that work together to complete your coding projects:

  • Manager - Receives your requests and breaks them down into manageable tasks
  • Leader - Reviews the tasks and creates detailed implementation plans
  • Worker - Writes the actual code based on the Leader's specifications

Think of it as having a complete development team where each member has their own expertise, collaborating to deliver high-quality results.

Requirements

Claude Code Team requires the following to be installed:

  1. Claude Code - The Anthropic CLI tool that powers the AI assistants

  2. tmux - Used to manage multiple AI sessions

Recommended Settings

For the best experience when using Claude Code Team, we recommend adding the following to your .claude/settings.json:

// .claude/settings.json
{
  "permissions": {
    "allow": [
      "Bash(npx ccteam@latest agent:*)",
      // ... other permissions
    ],
    // ... other settings
  }
}

This allows Claude Code to use the agent commands without prompting for permission each time.

Getting Started

1. Initialize configuration (optional):

Create a configuration file to customize your team's behavior:

$ npx ccteam@latest init

This creates a ccteam.yml file where you can specify Claude models and settings for each role.

# ccteam.yml

roles:
  # Manager role configuration
  # The Manager receives user requests, decomposes tasks, and coordinates with the Leader
  manager:
    # Claude model to use for this role (optional)
    # e.g. "opus", "sonnet", "claude-sonnet-4-20250514"
    model: ""

    # Skip permission prompts when using Claude Code (default: false)
    # Set to true to automatically accept all tool usage permissions
    skipPermissions: false

  # Leader role configuration
  # The Leader reviews Manager's tasks, creates implementation specs, and reviews Worker's output
  leader:
    # Claude model to use for this role (optional)
    # e.g. "opus", "sonnet", "claude-sonnet-4-20250514"
    model: ""

    # Skip permission prompts when using Claude Code (default: false)
    # Set to true to automatically accept all tool usage permissions
    skipPermissions: false

  # Worker role configuration
  # The Worker implements code based on Leader's specifications
  worker:
    # Claude model to use for this role (optional)
    # e.g. "opus", "sonnet", "claude-sonnet-4-20250514"
    model: ""

    # Skip permission prompts when using Claude Code (default: false)
    # Set to true to automatically accept all tool usage permissions
    skipPermissions: false

2. Start a new team session:

Run the following command to start Claude Code Team:

$ npx ccteam@latest start

3. Connect to your AI team:

When Claude Code Team starts up, it will output the tmux session name, so you can attach to the session using the tmux attach command.

$ tmux attach -t ccteam-XXXXX

4. Give tasks to your Manager:

Once connected, you'll see three panes with different AI roles. Start by talking to the Manager (usually the left pane) and describe what you want to build or fix.

5. Watch the collaboration:

The Manager will delegate tasks to the Leader, who will create specifications for the Worker. You can observe the entire process and provide feedback at any stage.

That's it! Your AI team will handle the rest, from planning to implementation.

6. View active sessions:

You can see all active Claude Code Team sessions at any time:

$ npx ccteam@latest list

This shows a table with session names, start times, and working directories:

SESSION           STARTED AT           WORKING DIRECTORY
────────────────────────────────────────────────────────────────────────────────
ccteam-abc12      2025-06-24 14:30     /path/to/project-1
ccteam-def34      2025-06-24 15:45     /path/to/project-2

Found 2 active session(s)

7. Stop a team session:

When you're done with your Claude Code Team session, you can cleanly stop it using:

$ npx ccteam@latest stop ccteam-XXXXX

License

This project is licensed under the MIT License - see the LICENSE file for details.

Copyright (c) 2025 Koki Sato

About

πŸ‘₯ A collaborative AI coding tool that brings multiple Claude Code instances together to work on complex coding tasks.

Topics

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages