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

vibescore-cli

v0.2.1

Published

Measure what a Claude Code project actually cost to build, for listing on VibeScore.

Readme

vibescore-cli

Measure what a Claude Code project actually cost to build, then list it on VibeScore.

cd your-project
npx --yes vibescore-cli | pbcopy          # macOS
npx --yes vibescore-cli | Set-Clipboard   # Windows PowerShell
npx --yes vibescore-cli | xclip -selection clipboard   # Linux

Run it from the project you're submitting. Paste the result on the submit page. A human-readable summary is printed to stderr, so you still see what you are about to paste even when stdout is piped to the clipboard.

What it reads

Claude Code already keeps a transcript of every session in ~/.claude/projects. This reads those files and reports on one project: the folder you ran the command from, and anything nested under it — every transcript line carries the cwd it was written from, so that's exact, not a guess. Nothing to pick from a list of every project you've ever built.

Cost comes from ccusage, which maintains the per-model price table; the two are joined on session id. Computing it reads every transcript on the machine, not just this project's — a session that touched several directories has its cost split by each one's share of that session's tokens, which needs the session's whole footprint to get right. If ccusage cannot be run, everything else is still reported and cost comes back as null rather than 0 — an unknown cost and a free build are different claims to put on a listing.

Why not just ccusage

ccusage reports token usage per session, which leaves two gaps:

  • It doesn't say which project a session belonged to. Every transcript line carries cwd, so scoping here is exact rather than you picking session ids off a list.
  • It only records when a session ended. Transcript lines carry a timestamp each, so a build has a real start and end — including a single-session build, which ccusage alone can only call unmeasurable.

Time to ship

Two numbers, because they answer different questions:

  • Active — time you were actually engaged. Gaps after Claude finishes and before you reply are counted only if you came back within 30 minutes; past that you had left. Claude's own turns always count, so a long autonomous run is work, not idle.
  • Wall-clock — first activity to last, calendar time, no interpretation.

A real example: 45 hours of wall-clock on this project, 10 hours of active time. Both are true; they just measure different things.

Privacy

Nothing is uploaded. The command writes to stdout and you choose what to do with it.

Filesystem paths are deliberately not included in the output — only the project's bare folder name. Pasting a report does not disclose your directory layout.

The payload contains: folder label, session ids, message count, first/last activity, wall-clock and active minutes, token counts per model, and cost.

Licence

MIT