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-agent-system

v0.2.1

Published

Scaffold Claude Code Agent Teams-based development systems into your project

Readme

create-agent-system

npm version license

Scaffold Claude Code Agent Teams into your project.

Why

The AI agent paradigm evolves daily — new capabilities, new patterns, new best practices. In this fast-moving landscape, the official documentation is the single source of truth (SSOT).

This tool is built around that principle. Rather than hardcoding conventions that go stale, create-agent-system derives its validation rules, supported fields, and agent configurations from the official Claude Code spec. The bundled /sync-spec skill lets you verify your setup against the latest documentation at any time, so your agent system stays current as the paradigm shifts underneath.

The goal: scaffold once, stay up to date forever.

Features

  • 3 built-in presets — Solo Dev, Small Team, Full Team
  • 8 agent types — PO/PM, Architect, CTO, Designer, Test Writer, Frontend Dev, Backend Dev, QA Reviewer
  • 8 skill packages — scoring, visual-qa, tdd-workflow, adr-writing, ticket-writing, design-system, cr-process, sync-spec
  • Interactive and non-interactive modes
  • Built-in validation — checks frontmatter, skills references, and project structure
  • Claude Code integration — auto-launch with Agent Teams enabled

Quick Start

npx create-agent-system

Presets

| Preset | Scale | Agents | Skills | QA Mode | Visual QA | EPIC-based | |--------|-------|--------|--------|---------|-----------|------------| | solo-dev | small | 5 | 5 | lite | Level 1 | No | | small-team | medium | 8 | 8 | standard | Level 2 | Yes | | full-team | large | 8 | 8 | standard | Level 3 | Yes |

Usage

Interactive mode (default)

npx create-agent-system

Prompts you to select a preset, project name, and whether to launch Claude Code.

Non-interactive mode

npx create-agent-system --preset solo-dev --project-name my-app --yes

Dry run

npx create-agent-system --dry-run

Preview what files would be created without writing anything.

Validate existing setup

npx create-agent-system validate

Check your agent configuration for errors and warnings.

Sync with official spec

After scaffolding, use the /sync-spec skill in Claude Code to verify your configuration against the latest official Claude Code documentation:

claude
> /sync-spec

This skill uses Context7 MCP to fetch the latest spec and compare it with your bundled configuration.

Target a specific directory

npx create-agent-system --target ./path/to/project

Generated Files

your-project/
├── CLAUDE.md
└── .claude/
    ├── agents/
    │   ├── po-pm.md
    │   ├── architect.md
    │   ├── cto.md
    │   ├── designer.md
    │   ├── test-writer.md
    │   ├── frontend-dev.md
    │   ├── backend-dev.md
    │   └── qa-reviewer.md
    ├── skills/
    │   ├── scoring/SKILL.md
    │   ├── visual-qa/SKILL.md
    │   ├── tdd-workflow/SKILL.md
    │   ├── adr-writing/SKILL.md
    │   ├── ticket-writing/SKILL.md
    │   ├── design-system/SKILL.md
    │   ├── cr-process/SKILL.md
    │   └── sync-spec/SKILL.md
    └── settings.json

Files vary by preset. For example, solo-dev generates 5 agents instead of 8.

CLI Reference

create-agent-system [options]
create-agent-system validate [path]

| Flag | Description | |------|-------------| | -p, --preset <name> | Preset name (solo-dev, small-team, full-team) | | -n, --project-name <name> | Project name | | -t, --target <path> | Target directory (default: current directory) | | --no-run | Skip Claude Code launch prompt | | -y, --yes | Skip interactive prompts (requires --preset) | | --dry-run | Preview without creating files |

Requirements

  • Node.js 20+
  • pnpm (recommended) or npm/yarn

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT