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-anpunkit

v2.3.0

Published

Scaffold the anpunkit AI-coding workflow (Claude Code) into a project. Upgrade-safe, non-destructive.

Readme

create-anpunkit

npx-installable scaffolder for the anpunkit AI-coding workflow.

npx create-anpunkit                     # install into the current directory
npx create-anpunkit --dry-run           # show the plan, write nothing
npx create-anpunkit --kb-path ~/anpunkit-kb
npx create-anpunkit --no-kb
npx create-anpunkit --force             # overwrite user-modified kit files

How it works

The bin is intentionally thin. It does NOT reimplement install logic: it locates the embedded kit in template/ and runs bash template/setup.sh --src template in your current directory. setup.sh is the single source of truth for the ownership taxonomy, adapter generation, hook merging, VERIFY, and KB config.

Assumes Node >= 18 and bash on PATH (Git Bash on Windows). Claude Code already requires Node, so this adds no new dependency for its users.

Publishing (maintainers)

GitHub is the source of truth; npm is a build artifact. Releases are tag-driven:

# bump version in BOTH package.json and .claude/anpunkit-manifest.json, commit, then:
git tag v2.0.1 && git push --tags
# .github/workflows/publish.yml verifies version sync, builds template/,
# smoke-tests a fresh install, and publishes to npm with --provenance.

Requires the NPM_TOKEN repo secret (npm granular access token, publish rights).

Manual fallback:

bash build.sh        # copies the kit tree into template/
npm publish --access public

template/ is build output and is gitignored; build.sh regenerates it from the repo root before each publish.