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/cli

v1.6.1

Published

The savvy CLI — unified commit, changeset, and lint commands for the Silk Suite

Readme

@savvy-web/cli

npm License: MIT

The savvy binary — one command for the everyday dev tooling in a Silk Suite project. It sets up changeset, commit and lint conventions, checks them and runs the git hooks behind them, replacing the three separate savvy-changesets, savvy-commit and savvy-lint bins.

Install

npm install --save-dev @savvy-web/cli
# or
pnpm add -D @savvy-web/cli

Most projects install @savvy-web/silk instead, which pulls in @savvy-web/cli along with the matching suite versions and the config files the savvy commands expect.

Quick start

Set up a project, then check it:

npx savvy init
# initializes changeset, commit and lint conventions in one pass

npx savvy check
# runs the changeset, commit and lint checks; reports every failure in one pass

savvy init and savvy check are the only setup entry points. The command groups expose the remaining per-tool operations:

npx savvy changeset version
# applies pending changesets and bumps package versions

npx savvy lint fmt package-json
# formats package.json files to the Silk Suite conventions

Remove build and cache artifacts across the whole workspace:

npx savvy clean --dry-run
# previews what would be removed across every workspace package and the repo root

npx savvy clean --globs dist,.turbo,coverage
# removes only the given patterns

Commands

  • savvy init — orchestrator that runs changeset, commit and lint setup in one pass.
  • savvy check — orchestrator that runs all three checks and reports every failure (it does not short-circuit).
  • savvy clean — removes build and cache artifacts (dist, .turbo, coverage, node_modules, .rslib by default) from every workspace package (leaves first) and the repo root (last); --globs to customize, --dry-run to preview.
  • savvy commit — the husky/Claude hook handlers (session-start, pre-commit-message, post-commit-verify).
  • savvy changeset — changeset lint, check, transform, version, config validation, and dependency changesets.
  • savvy lint — formatters for package.json, the pnpm workspace file and YAML.

Run any command with --help to see its full surface:

npx savvy changeset --help
# lists the changeset subcommands and their options

Programmatic API

The package also exports the assembled command tree and its handlers for embedding savvy in another program:

import { runCli } from "@savvy-web/cli";

await runCli(process.argv);

The individual command groups (changesetCommand, commitCommand, lintCommand) and their named handlers are exported from the package root.

License

MIT