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

@acme-skunkworks/changelog-core

v1.1.0

Published

Shared changelog contract and dual-runtime CLI for Acme Skunkworks — validate, enrich, and finalise dated changelog entries.

Downloads

931

Readme

@acme-skunkworks/changelog-core

Shared changelog contract and dual-runtime CLI for Acme Skunkworks — validate, enrich, and finalise dated changelog/ entries from CI and local dev. One package replaces the triplicated skill .mjs + per-repo infrastructure/scripts copies.

Zero runtime dependencies (Node built-ins only). Node 22+.

Install

pnpm add -D @acme-skunkworks/changelog-core

Config

Commands resolve config from the consumer repo (not the package install path), in order:

  1. --config <path> (CLI)
  2. CHANGELOG_CONFIG env
  3. .claude/skills/changelog/config.json
  4. .agents/skills/changelog/config.json
  5. config.json (committed repo-root — stopgap while skill config.json stays gitignored; see A-812)

Required identity keys: issueKeys, linearWorkspaceSlug. Structural keys (baseBranch, changelogDir, packageRoots, fallbackPackage, affectedPackages) have safe defaults.

CLI

npx changelog-core [--config <path>] <subcommand> [args…]
npx changelog-core --version

| Subcommand | Purpose | | ----------------------- | ----------------------------------------------------------------- | | validate | Schema-check every dated entry under changelog/ | | enrich | Fill post-merge fields for one entry (env-driven; deploy targets) | | finalise | Release-time enrich + version stamp (npm targets) | | set-affected-packages | Write affected_packages from the branch diff (monorepos) | | add-links | Rewrite bare Linear IDs in bodies to links | | backfill-commits | One-off backfill of stats.commits | | check-completeness | Gate a release-triggering PR title on a changelog entry |

Local scripts in this repo:

pnpm validate:changelog
pnpm changelog:enrich
pnpm changelog:finalise

Contract

The frontmatter schema and field-ownership rules live in changelog-contract.md (also importable as @acme-skunkworks/changelog-core/contract).

merge_strategy is not part of the contract (A-802). Existing entries that still carry the key validate fine — unknown keys are ignored.

Library

import {
  validateEntry,
  enrichFrontmatter,
  parseFrontmatter,
  loadConfig,
} from "@acme-skunkworks/changelog-core";

See src/index.ts for the full public surface (frontmatter, config, enrich, stamp, derive-packages, completeness helpers, …).

Development

pnpm install
pnpm run build
pnpm test
pnpm lint
pnpm tsc

Licence

MIT