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

crabby-mcp

v0.1.0

Published

Automated UI usability lab — audit, walk, review, and fix your running app, every finding evidence-fenced.

Readme

Crabby

An automated UI usability lab. Audit, walk, and fix your running app — in plain English.

Crabby looks at your running web or desktop app the way a careful reviewer would and tells you what's confusing, hard to use, or inaccessible — every issue tied to a named usability or accessibility principle and backed by real evidence (a screenshot, a captured interaction), never a guess. Where it can, it proposes a fix and verifies the fix actually worked. Not a vibe check.

You drive it in plain English through an MCP-aware assistant (Claude Code, Cursor, …), or from the command line.

New here? Start with QUICKSTART.md — zero to a usability report in two commands.

See it in 30 seconds

npm i -g crabby-mcp
crabby try            # scans a bundled demo page and opens a report — no app, account, or internet needed
crabby try --public   # run live against a real public site instead

If a report opens in your browser, Crabby is working. That's the whole test.

What you can ask it to do

Wire Crabby into your assistant (see Install), then ask in your own words. Crabby ships four journey skills and picks between them automatically:

  • review — the one-shot path: "find problems with my app at http://localhost:3000 and fix the ones I approve." Connects, finds issues, proposes fixes, applies only what you accept, and re-checks.
  • audit"audit http://localhost:3000 for usability and accessibility problems." Reviews a single screen.
  • walk"walk through the signup flow and tell me where a user would get stuck." Follows a whole task, step by step.
  • fix"fix the issues you found and check they're actually resolved." Applies fixes and verifies them.

You stay in plain English the whole time; the assistant drives the tools.

Install

Crabby ships as an MCP server (plus a CLI). Requires Node 20+. Two one-command paths:

# npm — for any MCP-aware assistant, or the CLI
claude mcp add -s user crabby -- npx -y crabby-mcp

# Claude Code plugin marketplace
/plugin marketplace add 0xHayd3n/crabby
# …then install the "crabby" plugin

Works with Claude Code, Cursor, Continue, and any MCP-aware client via the crabby-mcp command. The review / audit / walk / fix skills then appear automatically.

Command line

Prefer the terminal? Get a readable report on your own app with no API key — Crabby uses a local model:

# 1) Open your running app with a debug port turned on (pick any number, e.g. 9222):
chrome --remote-debugging-port=9222 http://localhost:3000
#    Desktop (Electron) app instead?  electron . --remote-debugging-port=9222

# 2) Point Crabby at it:
crabby judge --port 9222   # readable report; first run downloads a ~4 GB local model, once, then works offline

crabby run --port 9222 emits JSON instead and uses no AI at all. Full flag set, caveats, and troubleshooting: QUICKSTART.md.

How it works

Three ideas make Crabby's findings trustworthy:

  • The evidence fence. No judged finding is recorded unless it cites a real rubric principle and every piece of evidence resolves to something Crabby actually captured for that run. Enforced in code, not in a prompt — a model that invents a citation gets rejected, not believed. See the fence-as-moat whitepaper.
  • A versioned rubric. Every finding is grounded in a curated usability vocabulary synthesized from Nielsen, Shneiderman, Gestalt, WCAG 2.2, and the interaction laws (Fitts, Hick, Tesler). "This is a problem" is a citation, not an opinion.
  • A slim primitive bus. The assistant works through ten focused tools — connect, observe, scan, inspect, rubric, record, findings, fix, verify, overlay — and the journey skills compose them. Deterministic engines (axe-core + IBM Equal Access + Crabby's interaction-aware engine) do the mechanical detection; the model only adjudicates what the engines can't decide, and only through the fence.

Documentation

  • Quickstart — plain-language guide, zero to a report
  • Positioning — the strategic frame (being refreshed toward the usability-lab framing)
  • Whitepaper: the fence-as-moat pattern — technical reference for adopting the evidence fence in your own agentic-eval tool
  • Android — mobile-web (Chrome on Android) + the native Android deterministic engine
  • Agentic prompts — portable, harness-agnostic judge + scout prompts

License

MIT — composes cleanly with vendored axe-core (MPL-2.0) and IBM Equal Access (EPL-2.0).