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

claudepwn

v1.1.1

Published

One command to set up a fully-configured Claude Code automation environment for any project. 8 agents, 10 commands, 7 rules, 4 hooks, 9 skills, 8-wave hardening gate, sprint runner, vault, plugins.

Readme

claudepwn

One command. PRD in, fully-automated Claude Code project out.

8 agents. 10 commands. 7 rules. 4 hooks. 9 skills. 8-wave hardening. Sprint runner. Vault. 4 plugins. All wired. Claude reads your PRD and populates everything.

Quick Start

# New project from a PRD
npx claudepwn new --prd ./PRD.md --features all

# Add to an existing project
cd ~/existing-project
npx claudepwn init --prd ./PRD.md --features all

That's it. Claude reads the PRD, detects the stack, populates ROADMAP/DISPATCH/vault, writes ADRs, and kicks off Sprint 1.

Two Modes

new — Start a project from scratch

npx claudepwn new --prd ./PRD.md --features all
  1. Scaffolds entire .claude/ structure (agents, commands, rules, hooks, skills)
  2. Extracts project name and tech stack from your PRD automatically
  3. Launches Claude headless to:
    • Fill CLAUDE.md with real project description and stack
    • Decompose PRD into Epics → Sprints in ROADMAP.md
    • Write Sprint 1 tasks to DISPATCH.md with acceptance criteria
    • Write ADRs for design decisions
    • Populate vault with architecture docs
    • Kick off Sprint 1

init — Add to an existing codebase

cd ~/my-existing-project
npx claudepwn init --prd ./PRD.md --features all
  1. Same scaffold (non-destructive — skips existing files)
  2. Launches Claude to:
    • Audit the existing codebase (tests, security, architecture, tech debt)
    • Create Sprint 0 with audit fix tasks
    • Run hardening gate on Sprint 0
    • Then read the PRD and plan forward sprints

Options

--prd PATH          Your PRD file (Claude reads it, extracts name + stack)
--name, -n NAME     Override project name (default: from PRD or directory)
--stack, -s STACK   Override stack: python, typescript, rust, go (default: detected)
--features FEAT     vault, checklists, sprints, gitnexus, plugins, monorepo, or 'all'
--minimal           Agents + rules + hooks only
--force             Overwrite existing files (creates .bak backups)
--no-bootstrap      Scaffold files only — don't launch Claude
--no-git            Skip git init
--yes, -y           Accept defaults

What You Get

Always Included (base scaffold)

| Component | Count | Description | |-----------|-------|-------------| | Agents | 8 | Architect, Implementer, Tester, Reviewer, Security, Docs, VaultKeeper, Dispatcher | | Commands | 10 | /session-start, /session-end, /sprint-start, /sprint-end, /checkpoint, /status, /dispatch, /sync-vault, /research, /harden | | Rules | 7 | code-style, git-protocol, no-regressions, security-rules, test-first, design-before-code, research-protocol | | Hooks | 4 | pre-edit, post-edit (auto-lint + drift queue), post-bash (GitNexus refresh), pre-commit (secrets block) | | Skills | 9 | session-gate, sprint-review, harden + 6 GitNexus skills | | Hardening | 8 waves | Pre-check → Tests → Security → Review → Dependencies → Docs → Domain → Plugin PR | | Plugins | 4 | security-guidance (real-time), code-review (5-agent PR), frontend-design (anti-slop), claude-mem (cross-session memory) | | Root files | 7 | CLAUDE.md, AGENTS.md, BOARD.md, DISPATCH.md, ROADMAP.md, REVIEW.md, .env.example | | Bootstrap | 2 | bootstrap-new.md (PRD → plan), bootstrap-existing.md (audit → plan) |

Optional Features (--features)

| Feature | What It Adds | |---------|-------------| | vault | 10-directory Obsidian vault with READMEs, note template, conventions, index | | checklists | Epic, sprint, session checklist templates | | sprints | Sprint runner (Opus/Sonnet/Haiku model routing), TMUX orchestration | | gitnexus | Code knowledge graph, auto-generated per-cluster skills | | plugins | Installs all 4 Claude Code plugins | | monorepo | pnpm-workspace.yaml, tsconfig.base.json, .node-version, .dockerignore | | all | Everything above |

Stack Overlays

| Stack | Auto-detected by | Lint | Test | Format | Security | |-------|-----------------|------|------|--------|----------| | python | pyproject.toml, PRD keywords (fastapi, django, flask) | ruff | pytest | ruff format | bandit, pip audit | | typescript | package.json, PRD keywords (next.js, react, node) | eslint | vitest/jest | prettier | npm audit | | rust | Cargo.toml, PRD keywords (actix, axum, tokio) | clippy | cargo test | rustfmt | cargo audit | | go | go.mod, PRD keywords (gin, echo, golang) | golangci-lint | go test | gofmt | govulncheck |

The Flow

PRD.md → npx claudepwn new --prd PRD.md --features all
  ├── Scaffold 80+ files (.claude/, agents, commands, rules, hooks, skills)
  ├── Detect stack from PRD (python/typescript/rust/go)
  ├── Launch Claude (Opus) headless:
  │   ├── Read PRD
  │   ├── Fill CLAUDE.md with real stack + description
  │   ├── Decompose into ROADMAP.md (Mega → Epic → Sprint)
  │   ├── Write Sprint 1 tasks to DISPATCH.md
  │   ├── Write ADRs for design decisions
  │   ├── Populate vault with architecture docs
  │   └── /sprint-start → Sprint 1 begins
  └── Done. Run: scripts/run-sprints.sh 1

For existing projects, init mode audits first, creates Sprint 0 for fixes, hardens, then plans forward.

Headless / Auto Claude

After bootstrap, run sprints headless:

# Run Sprint 1 (Plan → Implement → Harden → Close)
./scripts/run-sprints.sh 1

# Run Sprints 1-3
./scripts/run-sprints.sh 1 3

# With TMUX monitoring (detach with Ctrl+B, D)
./scripts/tmux-start.sh

Model routing: Opus plans, Sonnet implements + hardens, Haiku closes.

License

MIT