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

@ogulcancelik/pi-minimal-footer

v0.1.7

Published

Minimal footer for pi with context gauge and subscription usage bars

Readme

pi-minimal-footer

Minimal footer for pi that replaces the default footer with a compact two-line display: context gauge on top, subscription usage bars below.

Claude Max

OpenAI Codex

Features

  • Context gauge — optional working directory and git branch, model, thinking level, and context window usage with token counts
  • Subscription usage bars — rolling window quotas with reset timers for supported providers
  • Auto-refresh — fetches usage on startup and model switch, then every 5 minutes
  • Git integration — branch name, dirty state, ahead/behind counts

Supported providers

| Provider | What it shows | | -------------- | ------------------------------------------------------ | | Claude Max | 5h + weekly rolling windows | | OpenAI Codex | Primary + secondary rolling windows | | GitHub Copilot | Premium interactions + chat quotas | | Google Gemini | Pro + Flash remaining quotas | | MiniMax | 5h + weekly rolling windows (Token Plan / Coding Plan) | | MiniMax CN | Same as MiniMax, China endpoint | | Kimi Coding | 5h + weekly rolling windows (Plan) |

Install

pi install npm:@ogulcancelik/pi-minimal-footer

Configuration

Environment variables (all optional):

| Variable | Description | Default | | ------------------------------- | -------------------------------------------------------- | ------- | | PI_MINIMAL_FOOTER_SHOW_CWD | Show current working directory in footer status line | 1 | | PI_MINIMAL_FOOTER_SHOW_BRANCH | Show git branch/dirty/ahead/behind in footer status line | 1 |

Accepted false values: 0, false, no, off (case-insensitive).

How it works

The footer reads context usage from the last assistant message's token counts (free — comes with every LLM response). Subscription usage is fetched from each provider's dedicated quota API using your existing auth tokens from ~/.pi/agent/auth.json or environment variables.

Usage is fetched:

  • Once on startup
  • Immediately on model switch (Ctrl+P)
  • Every 5 minutes after that

Git state is refreshed:

  • Once on startup
  • When pi reports a branch change
  • At the end of each turn

The footer adapts to narrow terminals by stacking lines vertically instead of the single-line wide layout.

Known issues

Claude Max usage bar not showing

Anthropic's OAuth usage endpoint (/api/oauth/usage) has been returning persistent 429 (rate limit) errors since late March 2026, affecting all third-party tools that display Claude usage data (CodexBar, oh-my-claudecode, claude-pulse, etc.). This is an Anthropic-side issue — tracked in claude-code#30930 and claude-code#31021. The usage bar will start working again once Anthropic fixes the endpoint.

Notes

  • Replaces the default pi footer entirely via ctx.ui.setFooter()
  • Auth tokens are read from ~/.pi/agent/auth.json (populated by /login) or standard env vars (ANTHROPIC_API_KEY, MINIMAX_API_KEY, etc.)
  • Providers without auth simply don't show a usage bar — no errors