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-tbox

v0.2.1

Published

List, toggle, group, and focus tools from any Pi extension in one place. Choices persist in chat state, and you can see the context cost of what's active.

Readme


The problem

Every Pi extension you install brings tools. Install a browser, a search index, a code lens, a few MCP bridges — and suddenly the model has dozens of tools active at once, each one eating context budget, whether or not you're using it. Pi has no unified way to see or shape that population: each plugin is its own world, and turning tools off means digging into each one individually.

pi-tbox is the one surface that sits across all of them. It lists every tool from every extension, lets you toggle whole toolsets at the level their authors declared them, curate named groups of them, and focus the model down to just the ones a task needs — with the choice persisting across reloads and resume.

What it gives you

A natural progression — each step is the next thing you'd want once you have the one before it:

  1. See them. /tbox list enumerates every tool across every installed extension, grouped by the toolset it belongs to. Tools unclaimed by any toolset are grouped per-source, so a plugin that only registers tools shows up as one focusable unit just like one that declares toolsets.
  2. Toggle them. /tbox +<toolset> on / off flips whole toolsets at the level their author declared them — the natural addressability boundary, not individual tools. /tbox all on|off hits everything at once.
  3. Group them. /tbox group <name> edit opens a keyboard-driven picker to curate a named collection of toolsets, saved globally so it's usable from any directory. Dependency (requires) closures are auto-maintained both directions — a group is always a coherent closed set, so /tbox research on enables exactly what's visible, no hidden cascades.
  4. Focus on a subset. /tbox focus <group> (or focus +<toolset>) restricts the model to Pi's builtins plus that one unit, and the choice persists in chat state — it survives reloads and resume, and survives installing new extensions without drifting. focus off restores defaults; focus release exits focus but keeps the live selection, flushing it to per-toolset state so a /reload replays what you see.
  5. Pin a baseline. /tbox defaults snapshots live on/off state into Pi's settings tier, so a baseline survives /reload, resume, and later global changes. save writes a full per-project snapshot (a stable repo baseline) or, with --global, a sparse diff against each toolset's packaged default (a shared tweak layer). show lists pins from both scopes with attribution, clear removes a scope's block, and restore applies the merged settings to live state now (lifting focus).
  6. Glance at the cost. A status-bar slot shows masking and focus state at a glance; /tbox status reports a serialized character count split into a core floor (builtins — immutable overhead) and an extension budget (what you can actually move with /tbox), so the number becomes a decision tool rather than a trivia fact.

Quick start

pi install npm:pi-tbox

Then in any Pi session:

/tbox            # show current state + brief help
/tbox list       # every tool, grouped by toolset
/tbox status     # toolsets, groups, focus, and char-count split

The status slot appears in your bar automatically and updates live as you toggle. Its four states (unchanged by defaults, which writes to settings, not chat state):

| Glyph | State | Meaning | |---|---|---| | ○ tbox | pristine | all defaults — nothing toggled, nothing masked | | ● tbox n masked | count | exclusion mode, n extension tools turned off | | ● focus:<unit> (n) | focus | deliberately constrained to one group/toolset; n active extension tools | | ● focus:∅ | focus-empty | focus is on but the allowlist left nothing active — broken |

Commands

All commands live under the /tbox shortcut. Two addressability rules keep the surface unambiguous: a + prefix means a toolset, a bare name means a group, so +find is always the toolset and find is always the group even if they share a name. Reserved words (status, focus, all, list, group, on, off, edit, remove, chars, defaults, release, restore) are rejected at group creation, so bare /tbox <group> on|off always works.

| Command | Effect | |---|---| | /tbox | current state (slot mirror + brief help) | | /tbox list [view] [filter] | enumerate tools (see views & filters below) | | /tbox chars | budget view: toolsets ranked by +chars descending | | /tbox <group> on / off | enable / disable every toolset in a group | | /tbox +<toolset> on / off | enable / disable a single toolset directly | | /tbox +<toolset> | describe the toolset (members, state) | | /tbox group <name> edit | curate a group in the keyboard-driven picker | | /tbox group <name> remove | delete the group | | /tbox group <name> | describe a single group | | /tbox group list | list every group with its toolsets | | /tbox focus <group> / focus +<toolset> | enter focus on a group or toolset | | /tbox focus off | exit focus → restore effective defaults | | /tbox focus release | exit focus → keep the live selection (flush to per-toolset state) | | /tbox defaults [show] | list settings-tier pins, annotated by scope | | /tbox defaults save [--global] | snapshot live state into settings (project: full; --global: diff vs packaged default) | | /tbox defaults clear [--global] | remove a scope's toolsetDefaults block | | /tbox defaults restore | apply settings defaults to live state now (lifts focus) | | /tbox all on / off | enable all / disable all non-builtin toolsets | | /tbox status | full status: toolsets, groups, focus, char-count split |

/tbox list views and filters

/tbox list [--flat] [--active|--inactive]
  --flat      one row per tool, no grouping
  --active    show only active tools
  --inactive  show only inactive tools

The default grouped view resolves overlapping toolsets by smallest-toolset-wins: each tool appears once under its most specific containing toolset, no duplication. --active / --inactive let you focus on only the enabled or disabled tools.

/tbox defaults — settings-tier pins

/tbox defaults [show]           list pins from both scopes (default)
/tbox defaults save [--global]  snapshot live on/off into settings
/tbox defaults clear [--global] remove a scope's toolsetDefaults block
/tbox defaults restore          apply settings defaults to live state now

save writes project scope by default — a full snapshot pinning every registered toolset to its live on/off, so a later restore reproduces the save exactly even if global settings later change. With --global, it writes a sparse diff against each toolset's packaged default (spec.defaultEnabled ?? true), so the shared file records only your tweaks vs upstream — project-context state never leaks into the shared file. show reads both scopes and annotates each row [global] or [project] (with (overrides global) where project shadows a global pin for the same key). restore applies the merged settings to live state and lifts focus, using the same tombstone-and-apply path as focus off. --global is a write-scope flag (save/clear only); show and restore already read/apply both scopes, so --global is a usage error there. save works during focus — the allowlist selection is captured either way.

/tbox chars — budget view

/tbox chars

Flat, ranked list of toolsets sorted by serialized character count descending (most expensive first). Builtins are excluded — they are the non-togglable floor. Toolsets with no active members (charging +0 chars) are omitted — they're not consuming budget, so there's nothing to save. No flags. Each line reports the toolset's active/inactive split and its +chars cost.

Concepts

Toolsets are the unit extensions declare (or that tbox auto-registers for plugins that only register tools). A toolset is the addressability boundary — tbox toggles whole toolsets, not individual members, because that's the granularity state persists at. Toolsets from any installed extension are visible to tbox automatically.

Groups are your named collections of toolsets, stored in tbox's own config ({ toolsets: string[] } — whole toolsets only). The library never knows what a group is; tbox resolves a group to its toolsets at actuation time. Curating a group in the picker auto-maintains requires closures in both directions, so a group is always a closed set under the dependency graph. Groups are global/user-scoped — defined once, usable from any directory.

Focus is a stronger constraint than toggling: it flips the underlying library into allowlist mode so that only the focused unit's allowlist (plus Pi's builtins) is active, and unknown toolsets default off — the allowlist is a finite, branch-persisted array, so a toolset registered after focus was entered stays off by construction. That means a focus snapshot survives new-extension installs without re-applying. While focus is active, the actuation commands (all on|off, <group> on|off, +<toolset> on|off) are refused — the slot advertises a known working set, and toggling underneath it would make that promise a lie. Use focus off (restore effective defaults) or focus release (keep the live selection) first.

Drift, honestly. /tbox <group> on|off writes per-toolset state at the moment it runs, so editing a group later doesn't retroactively change past sessions — only the resulting per-toolset state was stored, and you re-adjust with /tbox commands. Focus is the exception: allowlist mode makes it drift-free by design. focus off also tombstones stale per-toolset branch entries from before the focus, so a /reload after off falls through to settings → exclusion floor → defaultEnabled matching the live state off just produced — no pre-focus toggle can resurface. If you want a choice that holds, use focus; if you want a one-off toggle, use on/off; if you want a baseline that holds across machines/checkouts, pin it with /tbox defaults save.

What tbox won't touch. Pi's builtin tools are always-on and outside tbox's scope — they're never registered into a toolset, so no group, focus, or all off can reach them. Tools injected by a host embedding Pi via customTools (the sdk source) are likewise out of scope: their presence is controlled by the host, not the extension system, so persisting toggle state for them would be semantically broken. They appear as read-only rows in /tbox list --flat so you can see they exist.

Picker keyboard shortcuts

/tbox group <name> edit requires interactive (tui) mode. All keys are remappable through your user keybindings:

| Key | Action | |---|---| | / | navigate | | Enter | toggle the focused row | | Ctrl+A | enable all (filtered set if search is active) | | Ctrl+X | clear all (filtered set if search is active) | | Ctrl+S | save to config | | Esc / Ctrl+C | cancel (clears search first if a filter is active) |

The list is windowed (8 rows) with a fuzzy search input, so it never exceeds the viewport regardless of how many toolsets exist. Inline footer cues report auto-checked dependencies (auto-checked: portal.web (required by selection)) and auto-unchecked dependents as you toggle.

How state persists

tbox is the user-facing layer; the persistence machinery lives in its dependency pi-tool-masking, which owns per-toolset on/off memory, the requires cascade, and the allowlist/exclusion default-resolution mode that makes focus drift-free. tbox operates entirely through that library's events, so it layers on top of any installed extension without disrupting the event flow those extensions already depend on — toggles survive reloads and resume, focus survives new installs, and nothing reaches into extension internals.

Config

Groups are stored as user data in ~/.pi/agent/pi-tbox/groups.json — the groups table directly, no wrapper key. A group defined in one directory is usable from any other.

Settings-tier defaults (from /tbox defaults save) are written into Pi's settings files via pi-tool-masking: project scope pins land in the repo's .pi/settings.json, --global scope pins land in the shared global settings file. Both store a toolsetDefaults block of { <persistKey>: { enabled: bool } } entries. show reads the merged view across both scopes; restore applies it to live state.

License

AGPL-3.0-or-later.