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

claude-notify-me

v1.0.1

Published

Voice notifications plugin for Claude Code — hear when tasks complete

Readme

claude-notify-me

Voice notifications for Claude Code. Hear when tasks complete — hands-free awareness while you context switch.

Works on Windows, macOS, and Linux using each platform's built-in TTS engine. No API keys. No external services.

Install

npx claude-notify-me install

Start a new Claude Code session and pick your voice.

Features

  • Speaks task summaries aloud when Claude finishes a session
  • Announces notifications as they arrive
  • Picks your voice on first launch, remembers it forever
  • All system TTS voices supported — not just the defaults
  • Add custom voices by name
  • Control speed, volume, and mute — from the terminal
  • Optional: announce when Claude is asking a question

Commands

claude-notify-me install                  Install and configure hooks
claude-notify-me uninstall                Remove plugin and hooks

claude-notify-me list-voices              List all available TTS voices
claude-notify-me set-voice <name>         Set the active voice
claude-notify-me add-voice <name>         Add a custom voice by system name
claude-notify-me remove-voice <name>      Remove a custom voice

claude-notify-me set-speed <0.5–3.0>      Speech speed  (1.0 = normal)
claude-notify-me set-volume <0–100>       Volume level
claude-notify-me mute                     Mute all notifications
claude-notify-me unmute                   Unmute notifications
claude-notify-me enable-questions         Also announce when Claude asks a question
claude-notify-me disable-questions        Only announce completed work  (default)

claude-notify-me status                   Show current settings
claude-notify-me test                     Play a test phrase

How it works

Three Claude Code hooks are registered in ~/.claude/settings.json:

| Hook | Script | Action | |------|--------|--------| | SessionStart | pick-voice | Greets you; prompts for voice on first run | | Notification | notify | Speaks incoming notification messages | | Stop | announce-stop | Reads ~/.claude/last-activity.txt aloud |

Claude writes a short summary to last-activity.txt after substantial tasks. The Stop hook speaks it when the session ends.

Platform requirements

| Platform | TTS engine | |----------|-----------| | Windows 10/11 | System.Speech (built-in, no install needed) | | macOS | say (built-in, no install needed) | | Linux | espeak-ng — install with sudo apt install espeak-ng |

Adding custom voices

Any voice installed on your system can be used:

# See what's available
claude-notify-me list-voices

# Add a voice not shown by default
claude-notify-me add-voice "Microsoft Hazel Desktop"

# Switch to it
claude-notify-me set-voice "Microsoft Hazel Desktop"

Windows: Install additional voices via Settings → Time & Language → Speech → Add voices.

macOS: Add voices via System Settings → Accessibility → Spoken Content → System Voice → Manage Voices.

Linux: Install additional espeak-ng voice packs via your package manager.

Voice commands

Tell Claude directly during a session:

  • "quiet" — mutes voice
  • "unmute" — restores voice
  • "change voice" — lists voices and switches
  • "set speed 1.5" — changes speech rate
  • "set volume 80" — changes volume
  • "notify questions" — also announce when Claude needs input
  • "done only" — back to announcing completed work only

License

MIT © mhersky