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 framework for persistent AI agent memory with local storage and graph-based retrieval
A developer has been building an open-source framework for persistent AI agent memory that stores data locally as Markdown files, uses wiki-links as graph edges, and implements Git for version control. The system features four-signal retrieval and graph-aware forgetting based on ACT-R cognitive science.

Eä: A SIMD Compiler for Python Written in Rust
A developer built Eä, a compiler for SIMD kernels in ~12k lines of Rust that generates shared libraries and Python wrappers from .ea files, achieving 6.6× speedups over NumPy without ctypes or build systems.

GitHub Comic Bot: Turn Commits into Daily Medieval Knight Comics
A bot that reads GitHub commits and generates 4-panel comic strips featuring a deadpan medieval knight, built with Claude Code and Gemini, running on GitHub Actions with free tier costs.

Axe: A 12MB CLI for Single-Purpose LLM Agents
Axe is a lightweight Go binary that runs focused AI agents defined in TOML files. It treats agents like Unix programs, supporting stdin piping, sub-agent delegation, and multi-provider LLM integration.