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

@ganderbite/flow-release-notes

v0.2.0

Published

Produces a technical changelog, user-facing what's new doc, and marketing highlights brief from a git commit range.

Readme

release-notes

●─▶●─▶●─▶● release-notes

Takes a git ref range and produces three parallel release artifacts in one run: a developer changelog, a user-facing what's new document, and a marketing highlights brief. A final cross-check step verifies consistency across all three outputs.

What it does

parse_commits ──▶ write_technical ─┐
              │                    │
              ├─▶ write_customer ──┼──▶ cross_check
              │                    │
              └─▶ write_marketing ─┘

parse_commits — runs git log between the two refs, parses each commit using the Conventional Commits format, and identifies breaking changes with migration notes.

The three branch steps run in parallel against the same parsed data:

  • write_technical writes changelog.md for developers: breaking changes with migration notes, features, fixes, deps, and other changes grouped by type.
  • write_customer writes whats-new.md for end users: plain-language descriptions of visible changes, no commit SHAs or technical jargon.
  • write_marketing writes highlights.md for stakeholders: a headline, three to five top highlights, and a by-the-numbers summary.

cross_check reads all three outputs and verifies consistency: breaking changes coverage, claim accuracy across audiences, and count integrity.

Sample output

After a run the flow directory contains four artifacts:

changelog.md       # grouped by Breaking / Features / Fixes / Deps / Other
whats-new.md       # plain-language for users
highlights.md      # headline + bullets for stakeholder comms
cross-check.md     # consistency verdict and discrepancy list

Add an excerpt to examples/ after your first real run.

Estimated cost and duration

  • Cost: $0.10–$0.50 per run (billed to your subscription on Pro/Max).
  • Duration: 5–15 minutes depending on commit volume and model choice.

Install

relay install release-notes

Run

relay run release-notes --fromRef=v1.2.0 --projectName="My App"

Generate only specific audiences:

relay run release-notes --fromRef=v1.2.0 --projectName="My App" --audiences='["technical","marketing"]'

Configuration

| Field | Type | Default | Notes | |---|---|---|---| | fromRef | string | (required) | Git tag or commit SHA to start from (exclusive). | | toRef | string | HEAD | Git tag or commit SHA to end at (inclusive). | | projectName | string | (required) | Project name used in the output documents. | | audiences | string[] | all three | One or more of technical, customer, marketing. |

Outputs

| Artifact | Step | Audience | Contents | |---|---|---|---| | changelog.md | write_technical | Developers | Grouped commits: breaking changes, features, fixes, deps, other | | whats-new.md | write_customer | End users | Plain-language feature and fix descriptions | | highlights.md | write_marketing | Stakeholders | Headline, top highlights, summary line | | cross-check.md | cross_check | All | Consistency report across all three outputs |

Customization

Fork this flow:

relay install release-notes
mv ./.relay/flows/release-notes ./my-release-notes
cd ./my-release-notes

Common customizations:

  • Swap the model — add model: 'opus' to a step spec in flow.ts for higher-quality prose on one branch.
  • Add a fourth audience — add a new step.prompt to steps, add it to barrier.branches and cross_check.contextFrom, and write a new prompt file.
  • Tighten the parsed data schema — add a Zod schema to schemas/commits.ts and set output.schema on the parse_commits step.
  • Scope to a subdirectory — add -- <path> to the git log command in prompts/01_parse-commits.md.

License

MIT. Copyright Ganderbite.