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

@qualcomm-ui/changesets-cli

v1.0.2

Published

Changeset automation CLI for conventional commits

Readme

@qualcomm-ui/changesets-cli

Changeset automation CLI for conventional commits.

This package streamlines the release process for monorepos by converting conventional commits into changesets, managing versioning, formatting changelogs, and generating combined release notes.

Installation

pnpm add -D @qualcomm-ui/changesets-cli

Commands

prep-release

Runs the full release-prep pipeline sequentially:

  1. Generate changesets from conventional commits
  2. Bump versions and generate changelogs
  3. Consolidate changelog formatting
  4. Generate combined release notes and write to a temporary file
qui-changesets prep-release [options]

| Option | Description | Default | | ----------------------------- | ----------------------------------------------------------------------------------- | ------------------------ | | --in-steps | Pause after each step and wait for confirmation | false | | --commit-sha <sha> | Diff each package against the target commit instead of the repository's base branch | | | --include-commit-links | Embed commit hashes in changeset summaries for changelog links | false | | --package-manager <command> | Package manager command to use for changeset version | pnpm | | --config <path> | Path to the changesets config file, relative to the project root | .changeset/config.json |

changeset-generate

Generates changesets from conventional commits without running the full pipeline.

qui-changesets changeset-generate [options]

| Option | Description | Default | | ------------------------ | ----------------------------------------------------------------------------------- | ------------------------ | | --commit-sha | Diff each package against the target commit instead of the repository's base branch | false | | --include-commit-links | Embed commit hashes in changeset summaries for changelog links | false | | --config <path> | Path to the changesets config file, relative to the project root | .changeset/config.json |

consolidate-changelogs

Normalizes and reformats all changed CHANGELOG.md files into a consistent structure.

qui-changesets consolidate-changelogs

generate-release-notes

Generates combined release notes from changed package changelogs, separating substantive changes from dependency-only updates.

qui-changesets generate-release-notes

check-versions

Checks which packages have newer local versions than what is published on npm. Sets a should-publish GitHub Actions output.

qui-changesets check-versions [options]

| Option | Description | Default | | ----------------- | ---------------------------------------------------------------- | ------------------------ | | --config <path> | Path to the changesets config file, relative to the project root | .changeset/config.json |

create-github-releases

Creates GitHub releases for published packages by parsing their changelogs.

qui-changesets create-github-releases [options]

| Option | Description | Default | | --------------------- | ---------------------------------------------------------------------------------- | ------------------------ | | --token <token> | GitHub token for authentication (falls back to TOKEN or GITHUB_TOKEN env vars) | | | --repo <owner/repo> | GitHub repository in owner/repo format | Derived from git remote | | --config <path> | Path to the changesets config file, relative to the project root | .changeset/config.json |

Programmatic API

The package also exports core functions for use in scripts:

import {
  conventionalCommitChangeset,
  consolidateChangelogs,
  generateReleaseNotes,
} from "@qualcomm-ui/changesets-cli"

License

Licensed under the BSD-3-Clause-Clear License.