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

commit-like-pro

v0.1.0

Published

Install a token-efficient AI skill that reviews your pending changes and writes senior-grade git commits — group, message, and commit like a pro.

Downloads

124

Readme

commit-like-pro

Install a token-efficient AI skill that reviews your pending changes and writes senior-grade git commits — group, message, and commit like a pro.

CI npm License: MIT

Most AI commit helpers do one expensive thing: they shove your entire git diff into the model and ask for a message. That burns tokens and still produces updated files. commit-like-pro teaches your agent to commit the way a senior engineer does — and to do it cheaply.

What it does

When you tell your AI agent "commit like a pro", the skill makes it:

  1. Survey cheaply firstgit status, git diff --stat, git log. It reads full diffs only for files whose intent it can't infer from the path + stat. That's the trick that keeps token cost down.
  2. Group unrelated changes into separate, logical commits — one concern each. Refactors stay apart from behavior changes; tests ride with the code they cover.
  3. Write Conventional Commits messages that explain the why, not a restatement of the diff — matching your repo's existing style.
  4. Guard against mistakes — never git add . blindly, stops on detected secrets / conflict markers / debug leftovers, respects your git hooks.
  5. Show a plan, confirm, then commit.

Install

npx commit-like-pro

The installer asks where to put the skill:

  • This project./.claude/skills/commit-like-pro/ (versioned with the repo, shared with your team), and optionally an AGENTS.md pointer.
  • Global~/.claude/skills/commit-like-pro/ (available in every repo).

Non-interactive

npx commit-like-pro --project --with-agents   # into the current repo + AGENTS.md
npx commit-like-pro --global --yes            # everywhere, no prompts

| Flag | Effect | |---|---| | --project | Install into ./.claude/skills (default) | | --global | Install into ~/.claude/skills | | --with-agents | Also add/refresh an AGENTS.md pointer (project installs) | | --no-agents | Skip the AGENTS.md pointer | | --yes, -y | Run non-interactively | | --help, -h | Show help |

Usage

Claude Code — the skill loads on demand. Just say:

commit like a pro

Cursor / Copilot / other agents — with --with-agents, the workflow is added to your project's AGENTS.md, which these tools read automatically. Or point your agent at .claude/skills/commit-like-pro/SKILL.md directly.

Why "token-efficient"?

A bare git diff of a busy branch can be tens of thousands of tokens. The skill's first rule is don't load that by default — survey with --stat and filenames, and pull line-level diffs only for the handful of files where intent is genuinely ambiguous. On a typical change the whole task costs a few hundred tokens.

Contributing

See CONTRIBUTING.md. The skill itself (skill/commit-like-pro/SKILL.md) is the product — keep it short, imperative, and faithful to the token-discipline and guardrails.

License

MIT © Jeffrey Rios