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

quash-mcp

v1.0.2

Published

Claude Code MCP plugin — instant AI error resolution from human experts

Downloads

28

Readme

quash-mcp

Instant AI error resolution for Claude Code. When your agent hits the same error 3×, Quash searches a curated solution database, pays for fixes automatically, or posts a live bounty to human experts — all without interrupting your flow.


Install via Claude Code Plugin (recommended)

/plugin install sudoevans/quash

Then run the setup wizard:

npx quash-mcp init

The wizard will ask for a Stacks wallet key (or generate one), save config to ~/.quash/config.json, and install agent instructions into your ~/.claude/CLAUDE.md.

Restart Claude Code — Quash is now active.


Manual Install (npm)

1. Run the setup wizard:

npx quash-mcp init

2. Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "quash": {
      "command": "npx",
      "args": ["-y", "quash-mcp"]
    }
  }
}

3. Restart Claude Code.


Environment Variables

All optional — the init wizard stores these in ~/.quash/config.json.

| Variable | Default | Description | |----------|---------|-------------| | STACKS_PRIVATE_KEY | — | Stacks private key for auto-payments | | QUASH_AGENT_ID | claude-code@hostname | Identifier shown in the marketplace | | QUASH_API_URL | https://quash.fly.dev | API base URL |

Environment variables take priority over ~/.quash/config.json.


How It Works

Error hits 3× with no progress
          │
          ▼
  quash_search_solution        (free, always first)
          │
   found? ──yes──▶  "Found fix: 'Alpine sed fix' — 3 STX. Applying..."
          │          quash_unlock_solution   (auto-pays STX via x402)
          │          Apply steps + verify
          │          quash_report_feedback
          │
   not found
          ▼
  "Posting bounty (3 STX). Continuing other work..."
  quash_post_bounty
          │
          ▼  (every 30s)
  quash_poll_status
          │
   solution_ready ──▶  quash_unlock_solution  →  apply  →  feedback
   expired         ──▶  repost with higher bounty

Tools

| Tool | Description | |------|-------------| | quash_search_solution | Free search — always runs first | | quash_unlock_solution | Auto-pays STX and returns full solution | | quash_post_bounty | Posts unsolvable error as live bounty | | quash_poll_status | Polls bounty every 30 s | | quash_report_feedback | Rates solution outcome (always called) | | quash_history | Shows resolution history + spend summary |


Slash Commands

| Command | Description | |---------|-------------| | /quash:init | Set up your Quash wallet | | /quash:history | View resolution history and spend summary |

Example history output:

  DATE        SIGNATURE                      AMOUNT    OUTCOME
  ──────────────────────────────────────────────────────────────
  2026-03-18  busybox-sed-incompatible       3 STX     unlocked
  2026-03-15  docker-healthcheck-env         5 STX     unlocked
  ──────────────────────────────────────────────────────────────
  Total spent (30d): 8 STX  ·  2 resolutions
  Estimated compute saved: ~$2.80

Privacy

Quash sends: error messages, environment details (OS, runtime, container), and reproduction commands. It does not send source code, file contents, or secrets.