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

@codebyplan/claude

v0.7.0

Published

CLI that installs CodeByPlan skills/agents/hooks into a project's local ./.claude/ directory

Readme

@codebyplan/claude

CLI that installs CodeByPlan skills, agents, hooks, and rules into a project's local ./.claude/ directory.

Published on npm as @codebyplan/claude; the CLI binary is codebyplan-claude.

Why

CodeByPlan ships its Claude Code assets (skills, agents, hooks, rules) via this standalone npm CLI instead of via Claude Code's plugin/marketplace mechanism. The install model is:

  • Local-only: assets are written to the consuming repo's ./.claude/ directory — no global install, no ~/.claude/ writes.
  • Manifest-tracked: every installed file is recorded in .claude/.cbp-claude.manifest.json so update and uninstall can act precisely on the files we own. Legacy installs that use the pre-CHK-113 filename (.codebyplan-claude.manifest.json) are auto-migrated on first install or update after upgrade.
  • No plugin dependency: works with vanilla Claude Code; no marketplace_* or plugin_* configuration required.

This package replaces the deprecated @codebyplan/claude-plugin Claude Code plugin distribution. The plugin was never published to npm; the GitHub mirror at github.com/midevyou/codebyplan-claude-plugin is archived as part of this release.

Install

npx codebyplan-claude install

This populates ./.claude/skills/, ./.claude/agents/, ./.claude/hooks/, and ./.claude/rules/, and writes a manifest tracking what was installed. The current release installs 39 skills, 11 agents, and a hooks bundle (hooks.json plus shell scripts). The rules/ directory is wired but ships zero rules today — it is created and tracked so future curated rules can land through the same install/update/uninstall flow.

Update

npx codebyplan-claude update

Re-fetches the latest asset versions, replaces tracked files, and refreshes the manifest. Assets you have edited locally are preserved — files whose checksum differs from the originally installed version are left untouched.

Uninstall

npx codebyplan-claude uninstall

Removes every file recorded in the manifest, then removes the manifest itself.

What ships

The install, update, and uninstall verbs are fully implemented. The current 0.1.0 release installs four template categories:

  • skills/ — 39 skills covering the full CodeByPlan development workflow
  • agents/ — 11 sub-agents (task planner, round executor, testing QA, and others)
  • hooks/ — a hooks bundle (hooks.json plus shell scripts) for pre-commit gates, test automation, format-on-edit, and desktop notifications
  • rules/ — directory wiring is in place; zero rules are shipped today

Future releases will add curated rules through the same install/update/uninstall flow.

License

MIT