npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

ccteam

v0.9.0

Published

<h1 align="center">Claude Code Team</h1>

Readme

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