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

fixloop

v1.0.2

Published

Triage red Playwright runs. Only product_regression may write code. Re-run must be green before a draft PR.

Readme

fixloop

CI npm license node

Triage is the feature. Every failure gets one label: product_regression, test_defect, or flake. Only product_regression may write application code. test_defect comments “update the test, I will not.” That single rule is why you would use this instead of a generic coding agent.

Playwright is the default oracle. After a patch, Fixloop re-runs the same command. If the suite is still red, it does not open a PR. PRs are draft. There is no auto-merge.

Install: npx fixloop. Config: .fixloop.json. Action: abhiyansingh12/[email protected] (pin a tag in production, not @main).

Install (GitHub Action)

Copy templates/github/fixloop.yml into .github/workflows/fixloop.yml:

- name: Fixloop
  uses: abhiyansingh12/[email protected]
  with:
    command: npx playwright test

Permissions: contents: write, pull-requests: write. The Action uses github.token itself. Outputs: triage, verified, passed, healed.

Golden path (Vite + Playwright)

cd examples/vite-app
npm install
npx playwright install chromium
npm test

Break the click handler in examples/vite-app/src/main.js, then from the repo root:

npm install -g fixloop
npx fixloop run --dir examples/vite-app --command "npx playwright test"
{
  "oracle": "playwright",
  "healTarget": "src/main.js",
  "playwrightCommand": "npx playwright test"
}

A Next app is the same shape: point healTarget at app/page.tsx (or src/app/page.tsx).

Triage

| Label | What Fixloop does | | --- | --- | | product_regression | Patch allowlisted application code, re-run the same command, draft PR only if green | | test_defect | Comment update the test, I will not. No writes. | | flake | Not patching. Timeouts, net errors, passed-on-retry — unless the heal target is app code and the spec is waiting on UI |

Safety

  • Writes limited to healAllowlist (default: src/, app/, pages/, public/, examples/, …)
  • .env, *.pem, *.key, SSH keys, .npmrc, lockfiles, node_modules, .git are denylisted; healTarget cannot override that
  • Logs and PR text run through secret redaction
  • Generation APIs must be https (or localhost)
  • Unified diffs preferred; empty writes refused
  • One stable branch: fixloop/auto-fix
  • Local CLI does not open PRs unless FIXLOOP_OPEN_PR=1
  • Zero runtime npm dependencies

Limits

  • Triage is heuristic. A timeout with no UI assertion is still a flake.
  • Healing can write more than one allowlisted file when the model returns a multi-file diff, or when the Playwright stack names application files
  • Playwright is spawned as argv (no shell). ;&|$ in --command is rejected
  • Local heals cover known patterns; a generation API is optional.
  • The Action must run in a workflow that already installed the app and Playwright.

CLI

npx fixloop init
npx fixloop run --command "npx playwright test"
npx fixloop ci --command "npx playwright test"
npx fixloop watch
npx fixloop scan

Kane is optional (oracle: "kane"). Without Kane or Playwright, Fixloop uses .fixloop/fixture.json. kiro-heal still forwards to fixloop for one release.

Examples

Docs

License

MIT