🔊 Talk to Claude. In your terminal.
Claude.
By your voice.
Claude Voice CLI brings the power of Claude to your terminal. Speak naturally, get intelligent answers, and stay in your flow.
$ npm install -g
@aayushdebugging/claude-voice
⧉
Works on
macOS
Linux
Windows
›_ WSL
✦
$ claude-voice
🎤 Listening…
You: How can I refactor this Python function to make it more efficient?
✳ Claude: Here's a more efficient version using list comprehension and defaultdict…
python from collections import defaultdict def group_by_key(items): groups = defaultdict(list) for key, value in items: groups[key].append(value) return dict(groups)
Press Ctrl+C to exit