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

pm-butler

v0.1.5

Published

Eight AI project management personas for Cursor, Claude Code, and Copilot-class harnesses.

Readme

PM Butler

Eight AI project management personas for Claude Code, Cursor, and npm-based skill install.

Site: pmbutler.devRepository: github.com/tedrubin80/pmbutlernpm: pm-butler

Install

Claude Code (plugin marketplace)

/plugin marketplace add tedrubin80/pmbutler
/plugin install pmbutler

Invoke: /pmbutler:pm-butler init

Local dev test:

claude --plugin-dir .

Cursor / Claude (personal skill via npm)

npx pm-butler skills install
npx pm-butler skills check

Project Edition (decision logs in your repo)

Scaffold living markdown files for decisions, scope, risks, and lessons:

npx pm-butler docs init
npx pm-butler docs init --dir docs/pm   # optional subdirectory
npx pm-butler docs check

Creates PROJECT.md plus eleven Project Edition files (DECISIONS.md, SCOPE.md, RISKS.md, etc.). Commit them to git � that is the durable record. Personas update these files during /pm-butler commands.

Persistent memory (optional)

Programmable structured memory in a local folder or SQLite database:

# Git-friendly JSON under .claude/pm-butler/memory/
npx pm-butler memory init --enable --path .claude/pm-butler --backend folder

# SQLite under .pm-butler/sqlite/pm-butler.db (Node 22+)
npx pm-butler memory init --enable --path .pm-butler --backend sqlite

npx pm-butler memory status
npx pm-butler memory config --enable --backend folder --path .claude/pm-butler
npx pm-butler memory log --type decision --title "Pick npm for install" --body "..."
npx pm-butler memory list --type decision --limit 10

Settings live in PROJECT.md (Persistent memory section) and <path>/config.json. Toggle anytime with memory config --enable or --disable.

Project-local (Cursor)

Commit .cursor/skills/pm-butler/ into your repo. See npm-packages/v2/project-local/ in the parent monorepo for layout.

First run

/pmbutler:pm-butler init

Creates PROJECT.md from templates/PROJECT.md.

Structure

skills/pm-butler/
??? SKILL.md           # Entry point
??? reference/         # Sub-command flows
??? content/           # Full ensemble + project edition prompts
??? scripts/           # context.mjs

Commands

initroutediscoverscopedesignsprintreviewlaunchdocumentconcernshandoffcrisis

See skills/pm-butler/SKILL.md for the full table.

Repository

This is the npm publish repo: github.com/tedrubin80/npmPMButler

Full monorepo (site, Gumroad packs): github.com/tedrubin80/pmbutler � attached as git submodule at npmPMButler/.

Changelog

0.1.5

  • npm pkg fix: normalized repository.url and bin path (no behavior changes)

0.1.4

  • Synced full package: docs init, memory, templates
  • Repository moved to npmPMButler; monorepo submodule

0.1.3

  • docs init / Project Edition scaffolds
  • memory init / persistent memory (folder + sqlite)