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

supercompress-proxy

v0.5.27

Published

SuperCompress for coding agents — run setup once to auto-install MCP + hooks and cut ~65% of LLM input tokens. Benchmarks at supercompress.dev/benchmarks.

Readme

SuperCompress

Cut ~65% of LLM input tokens for coding agents — without losing the answer.

Compress bulky context (files, logs, tool dumps, pastes) against the current question. Your ask stays intact.

Website · Benchmarks · Playground · Docs


Install

npm install -g supercompress-proxy

Requires Node.js 18+.


Quick start (recommended)

One command links your account and auto-adds MCP + hooks for every coding agent it detects (Cursor, Claude Code, Codex, Grok Build, OpenCode, fx, Gemini, and more):

supercompress setup

Then restart your agent so integrations reload. That’s it.

Re-detect later (new agent installed, etc.):

supercompress plugin
supercompress agents

Any other agent (custom harness, closed-source, DIY):

supercompress agents connect

That prints a stdio MCP snippet and writes an Agent Plugins 1.0 pack you can drop into any compatible client.

Benchmarks

Same keep-budget (35% of tokens kept). Who still has the answer?

| Method | Answer-critical kept | |---|---:| | FIFO / truncation | 24.8% | | Summarization | 60.5% | | H2O | 97.9% | | SuperCompress | 100% |

| Metric | Result | |---|---:| | Oracle recall (fixed budget) | 100% | | Mean token cut (real suite) | ~67% | | Important lines kept (compiler) | 100% |

Full methodology and charts: supercompress.dev/benchmarks


How it works

Your agent ──→ SuperCompress (hooks / MCP) ──→ smaller context ──→ model
                      ↑
                 query stays whole; only context is compressed
  1. You ask a question (never rewritten).
  2. Large context is scored against that question.
  3. Evidence-critical lines stay in original wording; filler drops.
  4. You pay for fewer input tokens.

Commands

| Command | What it does | |---------|----------------| | supercompress / tui | Interactive paper-branded UI (default in a TTY; Bun) | | supercompress setup | Recommended — link account, detect agents, install MCP + hooks | | supercompress plugin | Refresh agent integrations anytime | | supercompress agents | List supported / detected agents | | supercompress start / stop / status | Optional local proxy (setup --proxy) | | supercompress usage | Plan, quota, savings (--json ok) | | supercompress uninstall | Remove configs under ~/.supercompress |

Optional localhost API proxy (base-URL rewrite) if you explicitly need it:

supercompress setup --proxy
supercompress start

Then point OpenAI/Anthropic-compatible clients at http://localhost:8080/v1.


MCP

setup / plugin registers the MCP server on every detected host. You can also run it directly:

supercompress-mcp

Manual registration:

{
  "mcpServers": {
    "supercompress": {
      "command": "supercompress-mcp"
    }
  }
}

| Tool | Purpose | |------|---------| | compress_context | Compress bulky context for a query | | connect_account | Link this install to your dashboard | | usage_summary | Savings for the connected account |


Account & pricing

Free tier + paid credits from the dashboard.
Public PAYG: $0.30 / 1M tokens (see site for current plans).


Privacy

Hooks / MCP run on your machine. Provider API keys stay with your agent. Context text is sent to the SuperCompress API so the hosted compiler can compress it.


More

  • Coding agents: https://docs.supercompress.dev/coding-agents
  • HTTP / Python API: https://docs.supercompress.dev/quickstart
  • Source: https://github.com/Supercompress/Supercompress

License

MIT — see LICENSE.