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

vibetime-cli

v0.3.0

Published

Track what you ship in AI coding sessions

Downloads

1,457

Readme

Install

npm install -g vibetime-cli

Setup

vibe init
source ~/.zshrc   # or ~/.bashrc — or restart your terminal

Adds shell hooks that wrap claude, codex, and gemini. The tools work exactly the same — Vibetime tracks your git state while you code and prints the endcard when you're done.

Fish shellvibe init writes bash/zsh syntax. Fish users should add hooks manually to ~/.config/fish/config.fish:

function claude; vibe __wrap claude $argv; end

What you get

Every time you close a Claude Code, Codex, or Gemini session:

╭─────────────────────────────────────────────╮
│  ◆ vibe  ·  api  ·  2h 14m                  │
├─────────────────────────────────────────────┤
│                                             │
│  3 commits  ·  +847 −231  ·  12 files       │
│                                             │
│  ████████░░  shipped  ✦                     │
│                                             │
╰─────────────────────────────────────────────╯

Sessions are scored by what happened in git:

| tier | bar | meaning | |---|---|---| | shipped | ████████░░ | commits + meaningful changes | | progressed | ██████░░░░ | commits, small changes | | tinkering | ████░░░░░░ | changes but no commits | | exploring | ██░░░░░░░░ | a few lines touched | | idle | ░░░░░░░░░░ | nothing changed | | interrupted | ░░░░░░░░░░ | session killed or crashed |

How duration works — Vibetime polls your git state every 30 seconds. If no file changes, commits, or staging activity are detected for 30 minutes, the idle time is excluded from your session duration. Laptop sleep and background idle are automatically handled. Non-git projects use wall-clock time.

Share your week

Run vibe share to print your weekly card. Press h to open the HTML version — copy it, screenshot it, post it.

Streaks track consecutive days you shipped. If you shipped yesterday but not yet today, your streak shows ⏳ — you still have time.

Adding more tools

Vibetime wraps any AI CLI. To track a tool not listed above:

vibe config add-tool aider

Commands

vibe status                  today's sessions (includes active sessions)
vibe log                     last 20 sessions
vibe share                   weekly summary card
vibe share --html            shareable HTML card
vibe config show             current settings
vibe config set handle <name> set your @handle (shown on share cards)
vibe config add-tool <name>  track a new AI CLI tool
vibe uninstall               remove shell hooks

Sessions belong to the day they started — a session that runs past midnight appears under the previous day.

Uninstall

vibe uninstall
npm uninstall -g vibetime-cli

vibe uninstall removes all shell hooks from your rc file. Your session data in ~/.vibe/ is preserved — delete it manually if you want a clean removal.

Privacy

Vibetime has no telemetry, no network calls, and no account. Everything stays on your machine.

It reads git metadata only — commit counts, line counts, file counts. It never reads file contents, environment variables, API keys, or anything you type into the wrapped tool. The AI CLI's stdin/stdout are passed straight through via spawn with stdio: 'inherit'.

All data is stored locally in ~/.vibe/.

License

MIT