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

v0.9.1

Published

Dynamic, intelligent commitlint configuration with auto-detection of DCO, workspace scopes, and versioning strategies.

Readme

@savvy-web/commitlint

npm version License: MIT Node.js TypeScript

A commitlint config factory that reads your repo and builds the right rules — DCO requirements, workspace scopes, and versioning strategy included. No per-project configuration needed.

Features

  • Auto-detection - Reads DCO files, workspace packages and versioning strategy from the repo; no manual wiring required
  • Zero config - Ships with working defaults
  • Type-safe - Full TypeScript support with Zod schema validation
  • Extended types - Includes ai, release and tdd commit types beyond conventional commits
  • Interactive prompts - Built-in commitizen adapter with emoji support
  • CLI tooling - Set up and validate configurations with savvy-commit

Install

npm install -D @savvy-web/commitlint @commitlint/cli @commitlint/config-conventional husky

Quick start

// commitlint.config.ts
import { CommitlintConfig } from "@savvy-web/commitlint";

export default CommitlintConfig.silk();

Or use the static configuration without auto-detection:

// commitlint.config.ts
export { default } from "@savvy-web/commitlint/static";

Set up your project with the CLI:

npx savvy-commit init

Claude Code plugin

This package ships a companion Claude Code plugin that keeps AI agents on the right side of your commit conventions:

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

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

Once installed, the plugin:

  • Injects context at session start with your project's commit conventions, current branch and inferred ticket id, a GPG/SSH signing diagnostic, and a cached list of open issues from gh.
  • Auto-allows safe Bash and curated MCP operations so the agent does not prompt for read-only commands, common workflow tools, or vetted GitHub / GitKraken operations. Destructive commands (rm, curl, git push --force, package installers, gh repo delete, gh secret, etc.) are never auto-allowed.
  • Validates commit messages before they run by intercepting git commit and gh pr create|edit, denying messages that contain markdown headers or code fences, or that conflict with your signing config (--no-gpg-sign while commit.gpgsign=true).
  • Advises on commit quality for plan/design path leakage, soft-wrapped bullets, overly long bodies, and missing Closes/Fixes/Resolves trailers when the branch encodes a ticket id.
  • Replays commitlint after each commit and surfaces signing-status or Closes-trailer issues so the agent can offer an --amend fix.
  • Reminds the agent about commit quality when a user prompt mentions committing, shipping, opening a PR, amending, or squashing.

Documentation

For configuration options, API reference and usage details, see docs/.

License

MIT