Voxlert: Voice Notifications for Claude Code Sessions with Character Voices

What Voxlert Does
Voxlert is a notification system for Claude Code sessions that provides audio alerts when sessions finish or need input. It was created to help developers running multiple Claude Code sessions simultaneously who kept missing when one completed.
Key Features and Implementation
The tool hooks into Claude Code events and speaks notifications using distinct character voices so you can identify which session is talking without looking. Available voices include StarCraft Adjutant, SHODAN from System Shock, GLaDOS from Portal, and the HEV Suit from Half-Life.
Voxlert was built almost entirely within Claude Code sessions, including:
- The hook system for Claude Code events
- Audio pipeline
- Setup wizard
- Voice pack architecture
Technical Details
The system uses an LLM via OpenRouter to convert raw Claude Code events into short in-character lines, then speaks them through local text-to-speech. Everything runs on your local machine.
Installation is done via npm:
npm install -g voxlert
voxlert setupFor TTS functionality, you need Apple Silicon or an NVIDIA GPU. Without these, Voxlert still works as text notifications.
Source and Availability
The project is available on GitHub at https://github.com/settinghead/voxlert and was created by /u/settinghead0.
📖 Read the full source: r/ClaudeAI
👀 See Also

Ghostbar: A ~5MB native macOS Swift AI client that hides from screen sharing
Ghostbar is a native Swift macOS menu bar AI client (~5MB) that uses window.sharingType = .none to become invisible to screen recorders. Works with Ollama, vLLM, llama.cpp, and any OpenAI-compatible backend.

Open-Sourced the-vibe-stack: Markdown Rules to Maintain Claude Code Consistency
A developer has open-sourced 'the-vibe-stack' — a set of Markdown rules designed to keep Claude Code on track during long sessions by enforcing a rigid schema. The approach aims to reduce logic drift and token waste while ensuring predictable output.

AI Token Monitor: macOS Tool Tracks Local Claude Usage and Cost
A developer built AI Token Monitor, a macOS menu bar app that reads local Claude session files to track token usage, model distribution, and cost equivalents without API keys. The open-source tool revealed 6.5M tokens ($4,924 at API pricing) over 35 days in one user's case.

Structured Reasoning Template Improves AI Code Review Accuracy
A Reddit user shares a structured reasoning template adapted from Meta research that forces AI models to complete specific analytical steps before generating code reviews, improving accuracy by 5-12 percentage points according to arXiv:2603.01896.