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

@jaraxxxx/pi-extensions

v1.0.0

Published

A comprehensive collection of extension packages for Pi the coding agent — token guard, system context, tool profiler, project detector, dirty guard, permission gate, prompt customizer, auto commit, turn clock, branch navigator, and more.

Readme

pi-extensions 🧩

A comprehensive collection of extensions for pi — the coding agent.

One install, ten extensions. Individual extensions are also available as standalone packages.

Quick Start

# Install everything
pi install github:Jaraxxxx/pi-extensions

# Or individual extensions
pi install github:Jaraxxxx/pi-token-guard
pi install github:Jaraxxxx/pi-system-context

Extensions

| Icon | Extension | What it does | |------|-----------|-------------| | 🛡️ | pi-token-guard | Context usage bar with warnings. Never hit context limits silently again. | | 🔬 | pi-system-context | Tells the LLM about your OS, git branch, shell, runtime. Better answers. | | ⏱️ | pi-tool-profiler | Per-tool latency and call count stats. Know what's slow. | | 📦 | pi-project-detector | Auto-detects Next.js, Rust, Python, Go. LLM uses correct conventions. | | 🔒 | pi-dirty-guard | Warns about uncommitted git changes before the LLM edits files. | | 🚫 | pi-permission-gate | Blocks dangerous commands (rm -rf, .env access, credential leaks). | | 📋 | pi-prompt-customizer | Per-project .pi/guidelines.md that injects custom system instructions. | | 💾 | pi-auto-commit | Git checkpoint after every turn. Roll back anything. | | ⏳ | pi-turn-clock | Session timer, turn counter, cost estimator in footer. | | 🌲 | pi-branch-navigator | Visualize session tree branches. Never lose a fork. |

Architecture

pi-extensions/
├── index.ts                    # Extension manager — loads all sub-extensions
├── package.json
└── extensions/
    ├── pi-token-guard/
    │   ├── index.ts
    │   └── package.json
    ├── pi-system-context/
    │   ├── index.ts
    │   └── package.json
    ├── pi-tool-profiler/
    ├── pi-project-detector/
    ├── pi-dirty-guard/
    ├── pi-permission-gate/
    ├── pi-prompt-customizer/
    ├── pi-auto-commit/
    ├── pi-turn-clock/
    └── pi-branch-navigator/

The manager (index.ts) auto-discovers and loads all extensions. Each sub-extension is self-contained and installable standalone.

Commands

/extensions                    List all extensions and their status
/ext:toggle <name>             Enable/disable an extension
/ext:enable <name>             Enable an extension
/ext:disable <name>            Disable an extension
/ext:reload                    Reload all extensions

Requirements

  • pi >= 0.75.4

License

MIT