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

vibenotifications

v0.5.2

Published

Customizable notifications for Claude Code -- GitHub PRs, Slack DMs, stock prices, and more while you code

Downloads

583

Readme

vibenotifications

Customizable notifications for Claude Code -- GitHub PRs, Slack DMs, stock prices, and more while you code.

npm install -g vibenotifications
vibenotifications init

What it does

vibenotifications brings real-world notifications into your Claude Code session. While Claude works on your code, you'll see GitHub PR reviews, Slack messages, stock prices, and more -- right in the terminal.

Notifications appear across 5 Claude Code surfaces:

| Surface | How it works | |---------|-------------| | Spinner verbs | Notification titles replace spinner text while Claude thinks | | Status line | Top notification shown in the status bar with clickable links | | Context injection | High-priority items injected into Claude's context (30% rate) | | Session summary | Notification digest shown when starting/resuming a session | | Dashboard | Full notification list via vibenotifications dashboard |

Plugins

| Plugin | Source | API key needed? | |--------|--------|----------------| | GitHub | PR reviews, CI failures, mentions | Yes (PAT) | | Slack | DMs, channel messages | Yes (Bot token) | | X/Twitter | Mentions | Yes (Bearer token) | | Email | Unread count (placeholder) | Yes (IMAP) | | Stocks/Crypto | BTC, ETH, SOL, DOGE prices | No | | MCP Bridge | Connected MCP server status | No | | Carbon Tracker 🌱 | Live CO₂ estimate in status line (e.g. 🌱 85g CO₂ · ☕ boiling a kettle) | No | | Eco Mode ♻️ | Injects token-saving prompt into Claude's context — cuts ~65% output tokens without quality loss | No |

Setup

Interactive setup wizard:

vibenotifications init

This walks you through:

  1. Selecting which notification sources to enable
  2. Entering API keys/tokens for each source
  3. Testing connections
  4. Installing Claude Code hooks automatically

Usage

vibenotifications init            # Interactive setup wizard
vibenotifications dashboard       # View all notifications
vibenotifications add <plugin>    # Enable a new source
vibenotifications remove <plugin> # Disable a source
vibenotifications start           # Start notification daemon
vibenotifications stop            # Stop notification daemon
vibenotifications fetch           # Fetch notifications once (no daemon)
vibenotifications uninstall       # Remove everything

How it works

  1. Background daemon fetches notifications from enabled sources on a schedule (default: 60s)
  2. Notifications are deduplicated, priority-sorted, and written to ~/.vibenotifications/notifications.json
  3. Claude Code hooks read this file and route notifications to surfaces:
    • PostToolUse hook updates spinner verbs and injects context
    • SessionStart hook shows a summary digest
    • Status line command shows the top notification

Configuration

Settings are stored in ~/.vibenotifications/settings.json:

{
  "fetchInterval": 60,
  "surfaces": {
    "spinnerVerbs": { "enabled": true, "maxLength": 60 },
    "statusLine": { "enabled": true },
    "contextInjection": { "enabled": true, "rate": 0.3 },
    "sessionSummary": { "enabled": true }
  },
  "priority": {
    "minSpinner": "normal",
    "minStatusLine": "low",
    "minContextInjection": "high"
  }
}

Uninstall

vibenotifications uninstall

This removes all hooks, stops the daemon, and cleans up ~/.vibenotifications/.

Contributing

  1. Fork the repo
  2. Create a feature branch
  3. Add your plugin in src/plugins/ following the existing pattern
  4. Submit a PR

Plugin interface

Every plugin exports a default object with:

export default {
  name: "my-plugin",       // unique identifier
  displayName: "My Plugin", // shown in CLI
  icon: "MP",              // short icon for status line

  requiredConfig: {        // prompts during setup
    apiKey: { label: "API Key", type: "secret", instructions: "..." }
  },

  setup: async (config) => {
    // Validate credentials, return { connected: true }
  },

  fetch: async (config) => {
    // Return array of notification objects
    return [{
      id: "unique-id",
      source: "my-plugin",
      title: "Short title",
      body: "Longer description",
      url: "https://...",
      priority: "normal", // urgent | high | normal | low
      timestamp: new Date().toISOString(),
      actionable: false,
    }];
  },
};

License

MIT