xAI TTS Integration for Home Assistant Built with Claude — Full Repo
A developer on r/ClaudeAI worked with Claude to build a custom xAI TTS integration for Home Assistant. The integration uses xAI's new Eve voice and supports all five xAI voices (Eve, Ara, Rex, Sal, Leo), plus expressive speech tags like [pause], [laugh], <emphasis>, <slow>, etc.
The main technical hurdle: HA's modern TTS platform requires the async_stream_tts_audio method returning a TTSAudioResponse — the older async_get_tts_audio path silently fails in voice pipelines. This detail is not well documented and took time to debug.
At $15/1M characters, Eve is priced identically to OpenAI and reportedly more expressive for longer content than OpenAI's Ballad voice.
The repo is available at github.com/therealakahn/ha-xai-tts. The author states no HACS support is planned; it's provided as-is.
📖 Read the full source: r/ClaudeAI
👀 See Also

Audio Engineer Builds Mix Analysis Tool with Claude Code
An audio engineer created a tool that analyzes audio mixes using the Web Audio API and Claude to provide specific feedback on issues like muddy low-mids, lack of headroom, and buried vocals. The tool offers a free tier for quick analysis and a paid pro report with detailed frequency notes and plugin suggestions.

Claude Code Best Practice GitHub repository reaches 5,000 stars
A GitHub repository called 'claude-code-best-practice' has reached 5,000 stars. The repository was created with Claude to document best practices, tips, and workflows from both the creator and the community.

Claude Code Plugin Yoink Replaces Library Dependencies to Reduce Supply Chain Risk
Yoink is a Claude Code plugin that removes complex dependencies by reimplementing only needed functions, using a three-step workflow with /setup, /curate-tests, and /decompose commands. It currently supports Python with TypeScript and Rust support underway.

Parallel Sub-Agents in Claude Code: When They Save vs. Burn Tokens
Anthropic reports multi-agent systems use ~15× more tokens than a single chat, but prompt caching offers 90% discount on tokens. Whether sub-agents save or burn money depends on cache hit rates.