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

pi-packs

v0.7.13

Published

Umbrella Pi package: /install picker for a curated set of pi extensions (pi-qq, pi-chrome, pi-intercom, pi-linter, pi-bar, pi-prompt-shelf, pi-caveman, pi-graphite, pi-gh-cli, pi-loadout).

Readme

pi-packs

Umbrella Pi package that lets users install a curated set of individually published pi extensions through a single /install picker:

  • pi-qq — ask side questions in an overlay.
  • pi-chrome — drive your existing Chrome profile.
  • pi-intercom — message other local Pi sessions.
  • pi-linter — lint prompt drafts before sending.
  • pi-bar — show model, thinking, and context in the footer.
  • pi-prompt-shelf — shelve and restore prompt drafts.
  • pi-caveman — make replies terse to save tokens.
  • pi-graphite — manage Graphite stacks from Pi.
  • pi-gh-cli — drive the GitHub CLI from Pi.
  • pi-loadout — manage reusable Pi setup loadouts.

Operating principles

  1. Each extension is its own independently published npm package.
  2. Each extension package that's developed in-tree lives under packages/ and is wired into the workspace through npm workspaces.
  3. pi-packs is only an umbrella installer: it lets users install a curated set of extensions with one /install command.
  4. pi-packs must not know or document implementation details of any individual extension. Extension-specific code, docs, skills, versioning, and release notes belong with that extension package.

Install

Bootstrap the umbrella once:

pi install npm:pi-packs

Or locally while developing:

npm install
pi install /Users/tianrendong/pi-packs

/install — interactive picker inside Pi

After the umbrella is loaded, run /install in any Pi session. A toggle dialog lets you pick which of the listed extensions to install as their own pi packages (so you can later update or remove them individually):

  1. Pick scope: Global (~/.pi/agent/settings.json) or Project (.pi/settings.json).
  2. All packages start selected. Use ↑/↓ to move and Space to toggle any package between install / skip.
  3. Press Enter to install the selected packages, or Esc to cancel. For each install entry, pi first removes existing installs that would register conflicting extensions/commands (for example an old local pi-chrome checkout), then shells out to pi install [-l] npm:<name>.
  4. If anything was installed, /install automatically reloads Pi so the new extensions are available immediately.

Extending the picker

The list of installable packages is declared in package.json under the "pi-packs" key, decoupled from npm dependencies so the umbrella can advertise packages it does not bundle:

{
  "pi-packs": {
    "installable": [
      { "name": "pi-qq", "description": "…" },
      { "name": "pi-chrome", "description": "…" }
    ]
  }
}

How this package works

pi-packs exposes only its installer command through the pi.extensions manifest:

{
  "pi": {
    "extensions": [
      "./extensions/install-command.ts"
    ]
  }
}

It intentionally does not auto-load the curated extensions. Loading bundled entrypoints here would conflict with users who already installed packages like pi-chrome directly. Use /install to install selected packages as first-class Pi packages instead.

The picker metadata lives in package.json under pi-packs.installable; the published umbrella intentionally has no package dependencies, so installing it does not install or auto-load the curated extensions.

Verify package contents

npm run pack:dry-run