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

cero-pi

v0.3.0

Published

cero-pi — a cero-flavoured wrapper around pi-coding-agent: animated banner, stats panel, Cortex + CeroSpace Bridge MCP defaults, and LLM calls routed through the Claude Code CLI (no extra API billing).

Readme

cero-pi

A cero-flavoured wrapper around pi-coding-agent with an animated startup banner, a stats panel inspired by gentle-pi, the Cortex memory + CeroSpace Bridge MCP servers wired into the defaults, and LLM calls routed through your Claude Code CLI subscription — no extra API billing.

cero-pi does not fork pi. It depends on the published npm package @earendil-works/pi-coding-agent and adds value on top. See NOTICE.md for full attribution.

Install

# from this repo (dev)
cd E:\cero-pi
npm install
npm run banner      # render the banner only
npm start           # banner + stats + pi

# global (once published)
npm install -g cero-pi
cero-pi             # or `cpi`

What it adds

  1. Animated ASCII banner. Purple → amber shimmer that sweeps across "CERO-PI" once on launch, then settles into a static gradient. 24-bit ANSI; falls back to plain text if NO_COLOR is set or stdout is not a TTY. Source: src/banner.mjs.

  2. Stats panel. Reads real values for GIT, MCP, PI, PATH, PLUGINS, EXTENSIONS, and the cero-pi version. Nothing is fabricated — missing values show or 0. Source: src/stats.mjs.

  3. MCP defaults template. templates/mcp.json ships entries for:

    • cortex — Cortex memory MCP (persistent cross-session memory).
    • cerospace-browser — CeroSpace Bridge MCP (drive the real browser).
    • postiz — optional, off by default.

    cero-pi never auto-modifies your pi config. Copy the entries you want into ~/.pi/agent/mcp.json (or wherever your pi version reads MCP config from) and replace the placeholder tokens.

  4. Claude Code CLI routing (default on). cero-pi vendors the pi-claude-cli extension into vendor/pi-claude-cli/ and loads it via pi's -e flag, so LLM calls are served by your local claude CLI — i.e. your Claude Pro/Max subscription, with no separate API billing. Requirements: claude on your PATH and signed in. If claude is missing, cero-pi warns and falls back to pi's normal provider. Disable routing with --no-claude; override the routed model with the CERO_PI_MODEL env var (default claude-opus-4-7).

Flags

cero-pi [cero-pi flags] [-- pi args]

cero-pi flags:
  --banner-only    Render the banner and exit
  --stats-only     Render the stats panel and exit
  --no-banner      Skip banner + stats, go straight to pi
  --no-animate     Render banner without shimmer animation
  --no-claude      Don't route through Claude Code CLI (uses pi's API provider)
  --version        Print cero-pi and pi versions
  --help           Show this help

Everything else is forwarded verbatim to the underlying pi CLI.

Architecture

cero-pi (this package)
├── bin/cero-pi.mjs           Entry. Banner + stats, plans Claude routing, spawns pi.
├── src/banner.mjs            ANSI Shadow font + scan-line shimmer renderer.
├── src/stats.mjs             Reads git/MCP/pi info for the panel.
├── templates/mcp.json        Cortex + Bridge MCP server templates.
├── vendor/pi-claude-cli/     Vendored Claude-CLI provider extension (MIT, by rchern).
└── (depends on)
    └── @earendil-works/pi-coding-agent   ← actual coding agent, by Mario Zechner.

License

MIT — see LICENSE for cero-pi itself and NOTICE.md for upstream attribution. The pi coding agent is © Mario Zechner and the earendil-works team, also MIT.