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

@ddv12138/pi-setup

v2.1.0

Published

One-click bundle of my pi coding agent plugins (9 extensions)

Readme

@ddv12138/pi-setup

One-click bundle of my pi coding agent plugins. Install all 9 extensions with a single command:

pi install npm:@ddv12138/pi-setup

What's included

| Package | Purpose | |---|---| | pi-render-cache | Message render caching | | rpiv-todo | Todo list tool + overlay | | @ddv12138/pi-enter-no-send | Enter key no longer sends message | | @ddv12138/pi-thinking-tail | Thinking block tail display | | pi-dsh-minimal | Minimal status header | | @ff-labs/pi-fff | Fast file finder (fffind) & grep (ffgrep) tools | | pi-cometix-footer | Composable TUI status footer | | pi-context-view | Context usage viewer | | @zhushanwen/pi-ask-user | Structured ask_user tool |

How it works (v2.0.0+, always-latest)

The published tarball contains only this manifest (~2 KB). All 9 plugins are declared as npm dependencies with * ranges, so:

  • when pi runs npm install on the target machine, each plugin is resolved from its own npm registry address at the latest published version at that moment,
  • native binaries are resolved for the current platform (e.g. @yuuang/ffi-rs-linux-x64-gnu on Linux x64),
  • the pi manifest references the hoisted sibling packages via ../../ paths.

Updating

pi update npm:@ddv12138/pi-setup

pi update re-runs dependency resolution, so all plugins follow to their newest versions (including majors).

Note: pi only reinstalls the bundle when the bundle itself has a newer version on npm. To push plugin updates to clients, publish a new bundle version manually (npm version patch && npm publish).

Caveats

  • Requires network access during install (npm resolves dependencies on the target machine).
  • * ranges mean upstream breaking changes reach clients as soon as a new bundle version is published (and immediately on fresh installs). Pin a specific published version (e.g. pi install npm:@ddv12138/[email protected]) if you need stability.
  • If npm ever nests one of the dependency packages inside pi-setup/node_modules instead of hoisting it (version conflict), the relative manifest paths would break. Delete and reinstall to recover.

History

  • v1.0.0 bundled all dependencies into the tarball (42 MB). It worked on macOS ARM but broke on other platforms because platform-specific binaries couldn't be re-resolved inside a pre-extracted node_modules. It remains available on npm as a fallback: pi install npm:@ddv12138/[email protected].
  • v1.1.0–v1.2.0 used caret (^) ranges: plugins auto-followed minor/patch updates, but major bumps required publishing a new manifest.