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

@jetienne/changelog.ai

v0.1.7

Published

Create and maintain a project's CHANGELOG.md in the Keep a Changelog format — driven by Claude skills on your Claude subscription, no metered API key.

Downloads

265

Readme

changelog.ai

Create and maintain a project's CHANGELOG.md in the Keep a Changelog 1.1.0 format — delivered as Claude Code skills that run on your Claude subscription. No OpenAI, no metered API key: the reasoning is Claude itself, in your session; a small TypeScript toolbelt CLI does the deterministic work.

New here? See GETTING_STARTED.md for a step-by-step walkthrough.

Architecture

  • Interface — Claude skills in dotclaude_folder/skills/, mirrored into .claude/ (and installable into any project). This is what you use — you talk to Claude, not to the CLI.
  • Reasoning — performed by Claude in-session, guided by each skill's SKILL.md: deciding what's worth logging, phrasing entries for humans (not raw commit-log dumps), picking a category, suggesting the next semver bump.
  • Deterministic work — a Commander CLI (src/cli.ts) the skills call for scaffolding, parsing, validating, inserting entries, and cutting releases.

Every mutation goes parse → modify the in-memory model → serialize, so CHANGELOG.md never drifts from canonical Keep a Changelog form. After every AI-driven edit the agent runs validate and self-corrects — schema-checked output without a structured-output API.

Skills

| Skill | Capabilities | |---|---| | changelog-init | Create a fresh CHANGELOG.md; optional backfill from git history | | changelog-update | Add human-readable entries to Unreleased from recent commits or a described change | | changelog-release | Make a release: move Unreleased into a dated version section, regenerate comparison links |

Using it — the workflow

You don't run the CLI. You open a Claude Code session and ask in plain English; the skills trigger on what you say, do the work on your subscription, and write CHANGELOG.md as they go.

1. Enable the skills

# in this repo
npm install
npm run install:dotclaude     # symlinks all three skills into ./.claude/
# …then open this repo in Claude Code — changelog-init/update/release load automatically

To add the skills to a different project instead:

npx @jetienne/changelog.ai install /path/to/project/.claude --mode copy

2. Start a changelog

Create a changelog for this project.

changelog-init writes the standard header and an empty Unreleased section, auto-detecting the repo's URL from git remote for later comparison links. If the project has git tags, it can optionally offer to reconstruct past releases from history — only with your confirmation.

3. Keep it updated

Update the changelog with what I just did.

changelog-update looks at recent commits (or the change you describe), writes plain-language entries under the right category, and validates the result:

## [Unreleased]

### Added

- Support exporting reports to CSV.

### Fixed

- Crash when the input file is empty.

4. Make a release

Make a release.

changelog-release reads what's in Unreleased, suggests the next semver version (major for breaking/Removed, minor for Added, patch otherwise), confirms it with you, then moves everything into a dated section and regenerates every comparison link:

## [1.4.0] - 2026-07-22

### Added

- Support exporting reports to CSV.

### Fixed

- Crash when the input file is empty.

[1.4.0]: https://github.com/owner/repo/compare/v1.3.0...v1.4.0

It can optionally sync package.json's version, commit, and tag — always asking first — and print the release body ready to pipe into gh release create -F -.

Under the hood — the toolbelt CLI

The skills call this CLI for the deterministic, non-AI work. You rarely run it by hand, but it's a normal Commander CLI:

npx @jetienne/changelog.ai init                                  # scaffold a fresh CHANGELOG.md
npx @jetienne/changelog.ai validate                              # check it; exits non-zero and lists problems
npx @jetienne/changelog.ai add -c Added -t "New --verbose flag." # insert one entry under Unreleased
npx @jetienne/changelog.ai release 1.4.0                         # make a release from Unreleased
npx @jetienne/changelog.ai show 1.4.0                            # print a release's body (or "unreleased")
npx @jetienne/changelog.ai install .claude --mode symlink        # mirror the skills into .claude/ (uninstall to remove)

validate is the gate the skills run after every edit; every command reads and writes plain CHANGELOG.md text, so it composes with -i -/-o - in a shell pipeline.

Development

npm run typecheck     # tsc --noEmit
npm test              # node --test on tests/**/*.test.ts
npm run build         # tsc -p tsconfig.build.json  ->  dist/

License

MIT