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

@dwmkerr/openspec-flow

v0.1.8

Published

Drive OpenSpec spec-driven development from GitHub issues. Open the issue, get a spec PR. Merge it, get an implementation PR.

Readme

Quickstart

  1. Install openspec-flow via the GitHub App or the CLI — see the installation guide below.
  2. Label an issue with openspec:go.
  3. A specification PR opens automatically, labelled openspec:spec. Review it, leave comments. Re-apply openspec:go on the PR to update the spec based on the discussion. Merge when ready.
  4. An implementation PR is raised, labelled openspec:impl. Re-apply openspec:go after comments to improve the implementation. Merge to ship — the original issue closes automatically.

Install

Install the GitHub App (recommended)

openspec-flow on the GitHub Apps marketplace

When the App is installed, feedback on issues and pull requests showing the current stage of openspec-flow's operations is real time. A pull request opens automatically containing the workflow shim that drives the flow, along with instructions for setting the required secrets. Merge it and the flow is live.

Shim it yourself (when you can't install the App)

If you can't install the App, install the CLI and let it scaffold the same machinery as a pull request:

npx @dwmkerr/openspec-flow install

Feedback on issues and pull requests happens during the workflow run, so updates lag by ~30 seconds while the runner spins up. The CLI explains how to create the three contract labels (openspec:go, openspec:spec, openspec:impl) and how to set CLAUDE_CODE_OAUTH_TOKEN (recommended) or ANTHROPIC_API_KEY. Same workflow, same flow.

Identity

By default the flow runs as github-actions[bot] using the job's GITHUB_TOKEN — enough to try it out, but it can't push changes under .github/workflows/. For openspec-flow[bot] identity, install the App (above), or set oidc_broker_url / the OPENSPEC_FLOW_BROKER_URL variable to mint an App token via the OIDC broker. See advanced configuration.

How it works

A single sticky comment lives on the issue, mirrored to every PR raised for the flow. It updates as the agent works so you always know where you are and what to do next.

| Step | What you see | What to do next | |---|---|---| | 1. You label the issue with openspec:go. The bot acknowledges within ~1 second (App) or as soon as the workflow runner spins up (shim, ~30s). | Preparing the specification | Nothing — the agent is starting. | | 2. The agent is drafting the specification. The active row shows what it's doing right now (gathering context, pushing, etc) and which workflow run to watch. | Creating the specification | Nothing — wait for the spec PR. | | 3. The specification PR is ready for review. | Awaiting review of the spec PR | Review the PR. Merge to advance to implementation, or comment + re-apply openspec:go on the PR to iterate. | | 4. You commented and re-applied openspec:go. The agent is updating the spec PR based on the discussion. | Iterating on the spec PR | Wait for the iteration to land, then review again. | | 5. You merged the spec PR. The agent is drafting the implementation. | Creating the implementation | Nothing — wait for the implementation PR. | | 6. The implementation PR is ready for review. | Awaiting review of the implementation PR | Review the code. Merge to close the issue, or comment + re-apply openspec:go to iterate. | | 7. You commented and re-applied openspec:go on the implementation PR. | Iterating on the implementation PR | Wait for the iteration, then review again. | | 8. Something went wrong. The comment surfaces the warning + reason. | Run failed during implementation | Click through to the workflow run for details. Apply openspec:go after fixing the cause to retry. | | 9. You merged the implementation PR. The flow is complete; the original issue closes automatically. | Completed | Nothing — done. |

Develop

See docs/developer-guide.md. Built on OpenSpec + Claude Agent SDK. Architecture in docs/architecture.md.

npm install
cp .env.example .env
npm run dev:tunnel    # terminal 1
npm run dev           # terminal 2

License

MIT.