by jaredrhod
Talk to your Claude Code agent out loud. Hold a key, speak, and it answers in a real voice about a second later, with all its tools and its own personality. The hearing and the voice run on free local models, no API keys.
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
# Add to your Claude Code skills
git clone https://github.com/jaredrhod/backtalkGuides for using ai agents skills like backtalk.
Never used Claude Code? Start at jaredrhod.com: pick your situation and it routes you to the right path.
Runs on: Claude Code only; the voice is built on Claude's agent SDK. The $20 Pro plan is enough.
Talk to your Claude Code agent out loud. Hold a key, say the thing, and it answers through your speakers in a real voice about a second later, with all its tools, your project context, and its own personality. Your AI finally has something to say back.
The hearing and the voice run local: free, offline models on your machine, no voice API keys, no per-word costs. The brain is the Claude Code you already have. On a Claude subscription, talking works like any other session and uses your plan's usage, with nothing extra to buy. This is the same voice loop I run every day, the one you see answering in about a second on my videos, shipped as working code so your agent's job is pointing it at your setup, not building it from scratch.
"resume_last_session": true in the config and every launch reattaches to your previous conversation instead of starting cold, so closing the window stops costing you the thread. Off by default. And the built-in voice has a pace dial: "speed" in the config, 1.0 native, 1.15 brisker. (Credit where due: both grew out of a community proposal by aram-cloudstak.)"thinking_sound": "" in the config.git clone https://github.com/jaredrhod/backtalk
cd backtalk
./install.sh
The installer sets up a Python environment, the two local AI models (speech-to-text and the voice), and the one system library they need. First run downloads the models (about 1 GB total); everything after is instant. Prerequisites: Claude Code with a Claude subscription, and uv (the installer offers to install it).
The easy way to configure it: open this folder in Claude Code and say "read backtalk.md and set me up." The wizard picks your agent folder, your key, and your voice with you, then test-fires the whole loop.
Already in a Claude Code session with your agent? One sentence does the whole install: "clone https://github.com/jaredrhod/backtalk.git, then read backtalk/backtalk.md and set me up." Your agent runs the installer and the wizard for you.
The manual way: copy backtalk.json.example to backtalk.json (your copy is untracked, so updates never touch it), then edit it. Point agent_dir at the folder whose CLAUDE.md is your agent, set name to your agent's name, pick a ptt_key. Then:
./run.sh
Hold the key. Talk. Let go.
Windows is the newest lane, and the setup runs through the wizard instead of the shell scripts (install.sh and run.sh are Mac and Linux). Open this folder in Claude Code and say "read backtalk.md and set me up": the wizard installs uv, espeak-ng, the environment, and the models natively, then launches with uv run python -m backtalk.main. The ElevenLabs key lives in the ELEVENLABS_API_KEY environment variable on Windows for now (Credential Manager support is planned). Hit something rough? The Windows notes in TROUBLESHOOTING.md carry the known quirks, and issues are welcome.
Two engines, and the setup wizard offers you both instead of quietly defaulting.
Built-in (Kokoro), the free one. Local, offline, no accounts, no per-word costs, and honestly a bit computer-sounding. The default voice is bm_lewis, a British male with exactly the butler register. Around 60 voices ship free; set voice in backtalk.json (the first letter picks the language: a is American, b is British, and there are Spanish, French, Hindi, Italian, Japanese, Portuguese, and Chinese voices too).
ElevenLabs, the natural one. The human-sounding voice most people actually want, on your own API key. The free tier is enough to audition it; day-to-day talking runs on the paid starter plan. The wizard walks the whole thing with you: account, key into the keychain, then an audition of real voices through backtalk's own mouth until one fits. Want the exact voice from my videos? It's called Tarquin in the ElevenLabs voice library: search it by name and you're done hunting. Under the hood it is: set elevenlabs.enabled and your voice_id in the config, and have ffmpeg installed. The key never goes in a file. On macOS, seed it into the Keychain once with security add-generic-password -a "$USER" -s backtalk-elevenlabs -T /usr/bin/security -w (it prompts for the secret) and backtalk reads it from there. Linux: secret-tool store --label backtalk service backtalk-elevenlabs. The ELEVENLABS_API_KEY environment variable works as a last resort, but an export in a shell profile is a plaintext key on disk; the keychain is the grown-up path. Kokoro stays wired in as the automatic fallback, so if the cloud fails the voice degrades instead of going mute, and logs/backtalk.log records why.
backtalk writes tiny state files while it listens, thinks, and speaks, so anything can watch them and react in real time.
bus_dir at this folder (or set signals_dir here to its folder) and it performs your actual conversation, idling, listening, thinking, and speaking along with the voice.barehands_state_dir at its state/ folder and the on-screen ring becomes your agent's face, breathing while idle, spinning while thinking, and pulsing with the voice while it talks.Mind (ai-memory-vault), mouth (this), face (ai-visualizer), hands (barehands).
"ask": gated actions get a spoken permission check, answered by voice or by typing, and silence for about 75 seconds means no. "bypassPermissions" is auto-approve: the agent acts without asking, exactly like a terminal session with approvals off. Never hand-edit the file to switch; tell your agent to change it (takes effect the next time the voice line starts), or say "stop asking for permission" / "start asking again" in a voice session for a flip that happens immediately and saves itself.TROUBLESHOOTING.md. (Hands-free is about the MICROPHONE. Approvals are a separate setting called auto-approve; the two never share a name.)backtalk/ptt.py compares each event against the one key youbacktalk is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by jaredrhod. Talk to your Claude Code agent out loud. Hold a key, speak, and it answers in a real voice about a second later, with all its tools and its own personality. The hearing and the voice run on free local models, no API keys. It has 51 GitHub stars.
backtalk's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/jaredrhod/backtalk" and add it to your Claude Code skills directory (see the Installation section above).
backtalk is primarily written in Python. It is open-source under jaredrhod on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh backtalk against similar tools.
No comments yet. Be the first to share your thoughts!