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

@savvy-web/changesets

v0.8.0

Published

Custom changelog formatter and markdown processing pipeline for the Silk Suite. Provides structured changeset sections, remark-based validation and transformation, and an Effect CLI.

Readme

@savvy-web/changesets

npm version License: MIT Node.js >= 24

Custom changelog formatter and markdown processing pipeline for the Silk Suite. Replaces the default @changesets/cli/changelog formatter with a three-layer architecture that validates changeset files, formats structured changelog entries, and post-processes the generated CHANGELOG.md.

Features

  • Section-aware changesets -- Categorize changes with h2 headings (Features, Bug Fixes, Breaking Changes, etc.)
  • Three-layer pipeline -- Pre-validation (remark-lint), changelog formatting (Changesets API), and post-processing (remark-transform)
  • CLI tooling -- savvy-changesets binary with init, lint, check, validate-file, transform, and version subcommands
  • GitHub integration -- Automatic PR links, commit references, and contributor attribution
  • Version file syncing -- Bump version fields in additional JSON files using glob patterns and JSONPath expressions
  • Editor support -- markdownlint rules for real-time validation in VS Code and CI
  • Dependency table format -- Structured GFM tables for tracking dependency changes with automatic collapse, sort, and aggregation
  • AI-agent-friendly errors -- All lint and validation errors include inline fix instructions and documentation links, so AI agents can resolve issues without examining source code

Installation

npm install @savvy-web/changesets -D

Quick Start

Bootstrap your repository:

savvy-changesets init

This creates .changeset/config.json with auto-detected GitHub repo settings and configures markdownlint rules. Or configure manually:

{
  "changelog": [
    "@savvy-web/changesets/changelog",
    { "repo": "owner/repo" }
  ]
}

Write section-aware changeset files using ## Section headings to categorize changes:

---
"@my/package": minor
---

## Features

### OAuth2 Authentication

Added a new authentication system with OAuth2 support for third-party providers.

### CLI `login` Command

New interactive login command that opens the browser for OAuth2 consent:

```bash
my-package login --provider github
```

Returns a session token that can be passed to subsequent commands:

```typescript
import { createSession } from "@my/package";

const session = await createSession({ provider: "github" });
```

## Bug Fixes

* Fixed token refresh race condition during concurrent requests
* Corrected redirect URI validation for localhost callbacks

Claude Code Plugin

A companion Claude Code plugin is available that helps AI agents write well-structured changeset files. Install it at the project scope alongside the @savvy-web/changesets package:

# Add the Savvy Web plugin marketplace (one-time setup)
/plugin marketplace add savvy-web/systems

# Install the changesets plugin for this project
/plugin install changesets@savvy-web-systems --scope project

This adds the plugin to your .claude/settings.json:

{
  "enabledPlugins": {
    "changesets@savvy-web-systems": true
  }
}

The plugin provides:

  • /changesets:create -- interactive changeset creation with diff analysis and package detection
  • /changesets:check -- validate changeset files against structural rules
  • /changesets:list, :update, :merge, :delete, :preview -- manage pending changesets
  • changesets:format / changesets:status -- auto-activating skills that guide agents on format rules and existing changeset awareness
  • changeset-writer agent -- autonomous subagent for writing changesets after implementation work

Automated validation hooks run transparently in the background:

| Hook | Trigger | Action | | ---- | ------- | ------ | | SessionStart | Session begins | Injects changeset format rules and available tools into the agent context | | PostToolUse | Agent writes/edits a .changeset/*.md file | Runs savvy-changesets validate-file on the changed file; feeds errors back for immediate correction | | PreToolUse | Agent runs git commit | Prompts the agent to consider whether a changeset is needed | | Stop | Agent finishes responding | Runs savvy-changesets check on all changesets and reminds the agent if source files were modified without a changeset |

To have Claude automatically manage changesets as part of a multi-step workflow, include it in your prompt:

Implement the feature described in issue #42. When you're done, create a changeset documenting the user-facing changes for the GitHub release.

The agent will use the changeset-writer subagent to analyze the diff, detect affected packages, choose the appropriate content depth, and write a properly structured changeset file. The hooks ensure every changeset is validated as it is written and again before the session ends.

Documentation

License

MIT