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

cstm-changeset

v1.0.5

Published

A changeset add wrapper that prompts for structured business context

Downloads

53

Readme

cstm-changeset

npm version license

A wrapper around the changesets CLI that adds structured business context prompts to the add command — because changelogs should tell the why, not just the what.

Why?

Changesets is a fantastic tool for managing versioning and changelogs. But out of the box, it only captures what changed. When a teammate (or future you) looks back at the changelog, questions like these often go unanswered:

  • What business value did this change bring?
  • Did this affect clients? How?
  • Was it tested? How thoroughly?

cstm-changeset fixes that by adding a quick interactive prompt after changeset add, appending structured context directly to your changeset file.

Installation

npm install -D cstm-changeset

Note: Requires Node.js 24+ and @changesets/cli as a peer dependency.

Usage

Use cstm-changeset as a drop-in replacement for changeset:

npx cstm-changeset [command] [options]

Commands

| Command | Description | | ------------------- | -------------------------------------------------------------- | | add | Create a changeset with business context prompts (default) | | status | Show changeset status | | version | Apply changesets and update package versions | | publish | Publish packages to npm | | init | Initialize changesets in your project | | pre <enter\|exit> | Enter or exit prerelease mode | | tag | Create git tags for published packages |

All commands (except add) pass through directly to the underlying changeset CLI.

Options

| Option | Description | | --------------- | ------------------- | | -h, --help | Show help message | | -v, --version | Show version number |

Examples

# Create a changeset with business context prompts
npx cstm-changeset
npx cstm-changeset add

# Check changeset status
npx cstm-changeset status

# Apply changesets and bump versions
npx cstm-changeset version

# Publish to npm
npx cstm-changeset publish

# Initialize changesets in a new project
npx cstm-changeset init

The Add Flow

When you run npx cstm-changeset (or npx cstm-changeset add), the CLI will:

  1. Run the standard changeset add flow (package selection, bump type, summary)
  2. Prompt you with follow-up questions about business context
  3. Append the answers to the newly created changeset file

Business Context Questions

  1. What value does this change bring to the business?
  2. Does this carry client impact? (if yes, describe it)
  3. Has this been tested? (if yes, describe how)

Example Output

Here's what gets appended to your changeset:

## Business Context

**Business value:** Improves checkout conversion by reducing page load time

**Client impact:** Yes — Clients using the legacy API will need to migrate

**Tested:** Yes — Ran load tests simulating 10k concurrent users

Requirements

  • Node.js 24+
  • @changesets/cli 2+ (peer dependency)

License

MIT