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

@sailfish-ai/autofix-demo

v0.2.1

Published

Sailfish Autofix Demo — a zero-setup, fully-offline terminal walkthrough of an AI autofix run (investigate → root cause → fix → PR). Run with `npx @sailfish-ai/autofix-demo`.

Readme

@sailfish-ai/autofix-demo

A zero-setup, fully-offline terminal walkthrough of a Sailfish AI Autofix run.

It replays a scripted investigation — read session telemetry → pinpoint the root cause → apply a minimal fix → run tests → open a pull request — so anyone can see what Autofix feels like without authenticating, cloning a repo, or running an agent.

This is a demo. It does not run a real agent, read your code, make network calls, or change anything on your machine.

Run it

npx @sailfish-ai/autofix-demo

That's it — no login, no config.

Imitate a specific agent

The demo can render in the terminal style of whichever coding agent you're showing it to:

npx @sailfish-ai/autofix-demo --agent cursor

Supported ids: claude-code (default), cursor, codex, copilot, opencode, windsurf, gemini, goose, generic.

These are stylized, representative imitations of each tool's terminal UI (banner, prompt glyph, tool-call notation, diff format, accent color) — not byte-perfect clones. The investigation content is the same for every agent.

Options

| Flag | Description | | ------------------- | ------------------------------------------------------------ | | -a, --agent <id> | Imitate a specific agent's terminal UI (see ids above). | | -y, --yes | Auto-approve the pull-request prompt (no interaction). | | --fast | Skip the timed pauses and play the demo instantly (CI/test). | | --no-color | Disable ANSI colors. | | --version | Print the version. | | --help | Show help. |

How this differs from the real Autofix

| | @sailfish-ai/autofix-demo (this package) | @sailfish-ai/autofix (the real CLI) | | --- | --- | --- | | Auth | None | Sailfish OAuth login | | Network | None | Talks to the Sailfish backend + your VCS | | Agent | Scripted narrative | Real Claude Code session | | Repo | None needed | Runs against your repository | | Result | A canned report | A real branch + pull request |

To run the real Autofix, use @sailfish-ai/autofix.

Develop

npm install
npm start              # run from source via tsx
npm start -- --fast    # instant playback
npm run build          # bundle to dist/ with tsup
npm run typecheck