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

Open-source multi-account manager for Claude CLI enables profile switching
claude-multi-account is a CLI tool that creates isolated profiles for different Claude accounts, allowing instant switching without logging out. It supports shared settings, cloud backup, and works across Windows, Linux, macOS, and Termux.

MCP Slim: Local Embedding Search for MCP Tools Reduces Context Bloat
MCP Slim is a proxy that replaces full MCP tool catalogs with three meta-tools (search, describe, call), using local MiniLM embeddings for semantic search. It achieves 96% context window reduction and works offline without API keys.

Developer Achieves Sub-Second STT/TTS Latency with Local Whisper and Coqui-TTS Servers
A developer has open-sourced local server implementations for Whisper STT and Coqui TTS that achieve ~0.2s speech-to-text and ~250ms text-to-speech latency, enabling conversational AI agents without cloud dependencies.

Claude Code Skill /council Runs Prompts Across 4 AI Models in Parallel
A Claude Code skill called /council sends any prompt to GPT, Claude, Gemini, and Grok simultaneously in about 7 seconds, then uses Gemini to synthesize the best response by identifying specific improvements from the other models.