Native macOS notifications when Claude Code needs you. Click to jump to the right terminal.
Running 12 Claude Code sessions across multiple terminals? Stop tab-surfing. claude-buzz pings you the second any session needs input — and clicking the notification takes you straight there.
npm install -g claude-buzz
claude-buzz installThat's it. Every Claude Code session on your machine will now notify you when it's waiting for input or needs permission. No background processes, no polling — it hooks directly into Claude Code.
When Claude finishes a response or needs permission:
- "Ready for input" — Claude is done and waiting for your next prompt
- "Needs permission" — Claude wants to run a tool and needs your OK (shows the exact command)
Notifications include the project folder name so you know exactly which session needs you.
- Hooks into Claude Code natively — uses the built-in hooks system, zero background processes
- Smart notifications — debounces rapid-fire events, skips if you're already looking at the terminal
- Click to focus — click the notification to jump to the exact terminal tab
- Works globally — one install covers all current and future sessions
- Permission-aware — shows what Claude needs permission for
claude-buzz install # Add hooks to Claude Code
claude-buzz uninstall # Remove hooks cleanly
claude-buzz status # Check if active
claude-buzz test # Send a test notificationClaude Code has a hooks system that fires shell commands on lifecycle events. claude-buzz registers two hooks in your global ~/.claude/settings.json:
Stop— fires when Claude finishes responding and is ready for your next promptNotification— fires when Claude needs permission to run a tool
When a hook fires, claude-buzz reads the event data from stdin, checks if you're already focused on that terminal (skips if so), applies a 5-second debounce to avoid spam, and sends a native macOS notification via terminal-notifier.
| Terminal | Click-to-focus |
|---|---|
| iTerm2 | Finds and activates the exact tab |
| Terminal.app | Finds and activates the exact tab |
| Warp | Activates the app |
| Kitty | Activates the app |
| Alacritty | Activates the app |
- macOS
- Node.js 18+
- Claude Code with hooks support
No notifications appearing?
- Check macOS System Settings > Notifications > terminal-notifier — make sure banner style is set to "Banners" or "Alerts"
- Run
claude-buzz testto verify the notification pipeline works - Run
claude-buzz statusto confirm hooks are active
Notification sound but no banner?
- Same fix — set the alert style to "Banners" in System Settings
claude-buzz uninstall
npm uninstall -g claude-buzzClean removal — only touches the hooks it added, leaves all your other Claude Code settings intact.
MIT