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 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-claude-team-cmux

v0.1.4

Published

Scaffold a role-based Claude team for cmux or tmux with worktree isolation and Claude Code hooks.

Readme

create-claude-team-cmux

Scaffold a six-role Claude Code team into any repository. The generated setup can run on cmux or tmux, sends prompts to individual roles, captures role output, and optionally isolates agents in Git worktrees.

Quick Start

npx create-claude-team-cmux init --transport cmux
npx create-claude-team-cmux doctor --install
scripts/claude_team.sh start .

Use In A New Project

From the project you want to add the Claude team to:

mkdir my-project
cd my-project
git init
npx create-claude-team-cmux@latest init --transport cmux
npx create-claude-team-cmux@latest doctor --install
scripts/claude_team.sh start .

This also installs Claude Code slash commands under .claude/commands, so you can use /team_start, /team_panes, /team_to, /team_capture, and /team_env inside Claude Code.

Use --transport tmux instead of --transport cmux if you prefer tmux:

npx create-claude-team-cmux@latest init --transport tmux
scripts/claude_team.sh start . --transport tmux --attach

For tmux, --attach starts the team and connects to the session in one command. If the session already exists, it attaches to the existing session.

When the team starts, the script also makes the slash commands available in each role's working directory. This matters in worktree mode, where each role runs Claude from .claude/worktrees/<role> instead of the project root.

Inside Claude Code:

/team_start .
/team_panes
/team_to developer Implement only the approved API webhook change.
/team_capture qa

Commands

npx create-claude-team-cmux init
npx create-claude-team-cmux init --transport cmux
npx create-claude-team-cmux init --transport tmux
npx create-claude-team-cmux init --worktrees
npx create-claude-team-cmux install-commands
npx create-claude-team-cmux init-worktrees
npx create-claude-team-cmux doctor
npx create-claude-team-cmux doctor --install

If slash commands are missing from an existing project, reinstall them with:

npx create-claude-team-cmux@latest install-commands
# or from an already scaffolded project:
scripts/claude_team.sh install-commands

Generated Contract

Each Claude role receives:

  • CLAUDE_TEAM_ROLE
  • CLAUDE_PROJECT_DIR
  • CLAUDE_SESSION_NAME
  • CLAUDE_TEAM_TRANSPORT

The hooks then load:

  • .team/current-goal.md
  • .team/roles/<role>.md
  • .team/file-ownership.json
  • .team/role-presets.json

Collision Control

For serious parallel work, run:

npx create-claude-team-cmux init-worktrees

This creates one Git worktree per role under .claude/worktrees/<role>. Research and QA roles can stay read-only or work in isolated branches, while Lead performs final integration.

Install Logic

doctor --install can install missing local tools on macOS:

  • tmux: brew install tmux
  • cmux: brew tap manaflow-ai/cmux && brew install --cask cmux
  • cmux CLI symlink: /Applications/cmux.app/Contents/Resources/bin/cmux to /usr/local/bin/cmux

The installer prints manual steps when Homebrew or macOS support is unavailable.