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

breakit

v0.5.0

Published

Autonomous exploratory testing for web apps. 25 AI personas find bugs, security issues, and UX friction.

Readme

breakit

Autonomous exploratory testing for web apps. AI personas try to break your site so real users don't have to.

npx breakit test https://your-app.com

Install

npm install -g breakit

Or run directly with npx:

npx breakit test https://your-app.com

Setup

Set your Anthropic API key:

export ANTHROPIC_API_KEY=sk-ant-...

Or pass it directly:

breakit test https://your-app.com --key sk-ant-...

What it does

breakit launches 5 AI personas against your web app. Each uses a real browser (Playwright) controlled by Claude to explore your app the way unpredictable humans would.

| Persona | What they do | |---------|-------------| | :older_woman: Confused Grandma | Misreads labels, clicks wrong things, puts names in phone fields, gets lost in flows | | :firecracker: Form Abuser | XSS, SQL injection, 10k-character strings, empty submits, emoji in email fields | | :iphone: Mobile User | Tests on iPhone viewport (390x844), checks tap targets, overflow, responsive layout | | :zap: Impatient Teenager | Double-clicks everything, navigates away mid-submit, rapid back-button abuse | | :new_button: First-Time Visitor | Zero context arrival, evaluates clarity, tries signup, reports confusing UX |

Every bug found is automatically verified by replaying the steps. You get a structured report with severity, reproduction steps, and screenshots.

Usage

breakit test <url> [options]

| Flag | Description | Default | |------|------------|---------| | -k, --key <key> | Anthropic API key | ANTHROPIC_API_KEY env | | -d, --description <text> | Brief description of the app | -- | | -e, --email <email> | Login email for authenticated testing | -- | | -p, --password <password> | Login password | -- | | -t, --time-budget <seconds> | Max run time in seconds | 300 | | -n, --personas <count> | Number of personas to use | 5 | | -o, --output <dir> | Output directory for reports | ./breakit-output |

Examples

# Quick scan, 2 minutes, 3 personas
breakit test https://my-app.com -t 120 -n 3

# Authenticated testing
breakit test https://my-app.com -e [email protected] -p testpass123

# With app description for smarter testing
breakit test https://my-app.com -d "E-commerce store with checkout flow"

Report output

Reports are saved to ./breakit-output/ as both Markdown and JSON.

breakit Report -- https://your-app.com

Run ID: brk_a1b2c3
Duration: 4m 32s
Personas: 5 | Actions: 142 | Findings: 7

## Findings

### [CRITICAL] XSS via unescaped user input in search results
Persona: form_abuser | Category: security | Confidence: verified

Steps to reproduce:
1. Navigate to /search
2. Enter <script>alert(1)</script> in the search input
3. Click Search
4. Observe the results page heading

Expected: Input should be sanitized/escaped
Actual: Script tag rendered in page, XSS possible

How it works

  1. Discovery -- Crawls the target site, maps pages and forms
  2. Execution -- Each persona gets a browser and explores with Claude driving actions via tool-use
  3. Verification -- Candidate bugs are replayed to confirm they're real
  4. Report -- Structured output with severity, steps, screenshots

License

MIT -- Copyright 2026 Petr Kindlmann