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

@yarikleto/claude-agent-teams

v0.5.0

Published

CLI for installing Claude Code agent teams (bundles of agents, skills, hooks, scripts, commands, and MCP servers) into a project or user scope.

Readme


What is this?

A single skill is great. But real software work is done by a team: an architect designing the system, a DBA shaping the schema, a tester writing the plan, a reviewer keeping the bar high — plus the hooks, scripts, slash commands and MCP servers that glue them together.

claude-agent-teams is a tiny CLI that installs whole teams like that into your project (or user) scope, in one shot. It also remembers exactly what it installed, so remove is precise — your other settings, hooks and MCP servers stay untouched.

Think of it as claude-skills, scaled up to teams.

Install

npx @yarikleto/claude-agent-teams              # interactive menu
npx @yarikleto/claude-agent-teams list         # show all teams + installed state
npx @yarikleto/claude-agent-teams add          # interactive picker
npx @yarikleto/claude-agent-teams add common-web-app --scope project
npx @yarikleto/claude-agent-teams remove common-web-app --scope project

Flags: --scope user|project, -y/--yes, -h/--help, -v/--version.

Custom npm registry? If your default registry is a private/corporate mirror that doesn't proxy @yarikleto/*, force the public registry for this command:

npm_config_registry=https://registry.npmjs.org npx @yarikleto/claude-agent-teams

Scopes

  • 🏠 user~/.claude/ — available in every project on your machine
  • 📁 project./.claude/ — only the current working directory

What gets installed

When you add a team, each component is placed where Claude Code already looks for it — and an install manifest is written to <root>/agent-teams/<team>/install.json so remove can reverse every change exactly.

| In the team | Installs to | | --- | --- | | skills/<skill>/ | <root>/skills/<skill>/ | | agents/<agent>.md | <root>/agents/<team>-<agent>.md | | commands/<command>.md | <root>/commands/<team>-<command>.md | | scripts/ | <root>/agent-teams/<team>/scripts/ | | hooks/hooks.json | merged into <root>/settings.json (paths rewritten) | | .mcp.json | merged into <cwd>/.mcp.json (project scope only) |

Hook command paths use ${CLAUDE_PLUGIN_ROOT} in the team source. On install they're rewritten so things just work:

  • 📁 project scope → ${CLAUDE_PROJECT_DIR}/.claude/agent-teams/<team>/...
  • 🏠 user scope → $HOME/.claude/agent-teams/<team>/...

Agent and command filenames are prefixed with the team slug (e.g. common-web-app-architect.md, common-web-app-init.md) so two teams can coexist without colliding.

What remove does

Reads the install manifest and reverses it precisely:

  • deletes every file/dir it installed
  • splices its hook entries out of settings.json (your other hooks stay)
  • removes only the MCP servers it added (your other servers stay)
  • prunes empty parent dirs

No guessing, no rm -rf-ing your .claude/ folder.

Bundled teams

| Team | What it does | | --- | --- | | common-web-app | A spec-driven software-engineering org tuned for typical web applications (frontend, backend, full-stack SaaS) — orchestrator + 10 specialized agents (architect, DBA, designer, developer, devops, manual-qa, researcher, reviewer, tester, ux-engineer), 10 skills implementing the Specify → Design → Plan/Tasks → Implement → Verify loop, and 5 hooks for session start, iron-rule check, auto-format, save-progress, and post-commit reminders. Adapted from yarikleto/claude-swe-plugin. |

Authoring a team

Create teams/<team-name>/ with whatever subset of the layout you need — every directory is optional:

teams/<team-name>/
  team.json          # { "name", "description", "version" }
  agents/*.md
  skills/<skill>/SKILL.md
  commands/*.md
  hooks/hooks.json
  scripts/*.sh
  .mcp.json

Reference scripts from hooks/hooks.json using ${CLAUDE_PLUGIN_ROOT}/scripts/foo.sh — the CLI rewrites that placeholder to the correct install location at install time. This matches the Claude Code plugin convention, so an existing plugin repo can be dropped in as a team almost verbatim.

A minimal team.json:

{
  "name": "my-team",
  "description": "What this team is for, in one or two sentences.",
  "version": "0.1.0"
}

Layout

bin/
  agent-teams.js     the CLI
teams/
  <team-name>/       individual teams (see above)
assets/
  icon.svg
  banner.svg

License

MIT