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

@hypabolic/pi-hypa

v0.1.4

Published

Pi extension for Hypa command rewrite and CLI-backed tools

Readme

pi-hypa

Pi extension package for Hypa. Installing this package through Pi also installs @hypabolic/hypa as a package dependency and creates a best-effort user-level hypa shim when no hypa command is already on PATH. The shim delegates to a later global/system hypa install if one appears earlier on PATH, and otherwise falls back to the bundled dependency.

The current package provides:

  • bash rewrite interception via hypa rewrite --json
  • /hypa diagnostics
  • CLI-backed tools: hypa_shell, hypa_read, hypa_grep, hypa_find, hypa_ls
  • optional Hypa MCP proxy discovery tool: hypa_mcp_proxy

Bash interception mutates the Pi bash command before execution when Hypa returns Rewritten or GenericWrapper.

Install / smoke

pi -e ./packages/pi-hypa/extensions/index.ts
# or
pi install ./packages/pi-hypa
# after release
pi install npm:@hypabolic/pi-hypa

Configuration

| Variable | Default | Description | |---|---|---| | HYPA_BIN | bundled @hypabolic/hypa, then hypa | Hypa executable or absolute path. | | HYPA_PI_MODE | additive | additive keeps Pi builtins; replace disables Pi bash/read/grep/find/ls after registering hypa_* tools. | | HYPA_PI_REWRITE_TIMEOUT_MS | 5000 | Rewrite CLI timeout in milliseconds. | | HYPA_PI_ASK_NON_INTERACTIVE | deny | Ask fallback when ctx.hasUI === false: deny or allow. | | HYPA_PI_ENABLE_MCP_PROXY | 0 | Enable hypa_mcp_proxy, a lazy discovery/invocation bridge for upstream MCP servers configured in Hypa. | | HYPA_PI_ENABLE_MCP | unset | Legacy alias for HYPA_PI_ENABLE_MCP_PROXY if needed. | | HYPA_PI_MCP_PROXY_TIMEOUT_MS | 10000 | Timeout for hypa mcp ... proxy calls. | | HYPA_PI_MCP_CONFIG | ~/.pi/agent/mcp.json | Pi MCP config path used to deduplicate Hypa upstream servers already configured directly in Pi. |

MCP proxy discovery

When HYPA_PI_ENABLE_MCP_PROXY=1, the extension registers one compact tool, hypa_mcp_proxy, instead of dumping every upstream MCP server/tool into Pi context.

Supported actions:

  • list — compact list of upstream MCP servers configured in Hypa
  • search — search upstream tools by query
  • schema — fetch details/schema on demand for a selected server
  • invoke — invoke a selected upstream tool through Hypa's proxy/passthrough service
  • auth_check — validate auth for a selected upstream server

Servers already configured directly in Pi are filtered by default. Pass includeDuplicates=true to inspect/invoke through Hypa anyway.

Diagnostics

Run /hypa in Pi to show extension mode, binary resolution, MCP proxy setting, and the last rewrite status/error.

Safety

  • Commands already starting with hypa are not rewritten.
  • Parse, timeout, or process errors fail open by passing the original command through and recording diagnostics.
  • Deny blocks the tool call.
  • Ask confirms in UI mode and uses deterministic non-UI fallback.
  • hypa_* tool outputs are capped at 50KB / 2000 lines; truncated full output is saved to a temp file.