Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add TwinPeaksTownie/Claude-to-Speech/plugin install claude-to-speechWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/twinpeakstownie/claude-to-speech/switch-voice)<a href="https://agentmods.dev/commands/twinpeakstownie/claude-to-speech/switch-voice"><img src="https://agentmods.dev/badge/commands/twinpeakstownie/claude-to-speech/switch-voice/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/twinpeakstownie/claude-to-speech/switch-voice"><img src="https://agentmods.dev/badge/commands/twinpeakstownie/claude-to-speech/switch-voice.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00006 | $0.00294 |
| Opus 5 | $0.00003 | $0.00147 |
| Sonnet 5 | $0.00001 | $0.00059 |
| Haiku 4.5 | $0.00001 | $0.00029 |
Grade A, and why
switch-voice scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST http://localhost:5001/reload_voice 2>/dev/null || echo "Server not running" What it actually says
Switching TTS voice to: $ARGUMENTS
Available voices:
- LAURA (qEwI395unGwWV1dn3Y65)
- robo-LAURA (43WCRcu4Axd2KIaxt4M7) [default]
- Claude (uY96J30mUhYUIymmD5cu)
VOICE_KEY="$ARGUMENTS"
if [ -z "$VOICE_KEY" ]; then
echo "Usage: /claude-to-speech:switch-voice <voice-key>"
echo "Available: LAURA, robo-LAURA, Claude"
exit 1
fi
# Update active_voice in voices.json
cd "${CLAUDE_PLUGIN_ROOT}/server/config"
TMP_FILE=$(mktemp)
python3 << EOF
import json
with open('voices.json', 'r') as f:
config = json.load(f)
config['active_voice'] = '$VOICE_KEY'
with open('$TMP_FILE', 'w') as f:
json.dump(config, f, indent=2)
EOF
mv "$TMP_FILE" voices.json
# Reload voice in running server
curl -X POST http://localhost:5001/reload_voice 2>/dev/null || echo "Server not running"
echo "Voice switched to: $VOICE_KEY"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 41 lines · 6 tokens per session scan A 3feb9a1f69b0
switch-voice is a command published in the GitHub repository TwinPeaksTownie/Claude-to-Speech (19 stars, last pushed 5mo ago), licensed MIT. It adds 6 tokens to every session and 294 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
create-presentation
Generate interactive HTML presentation from materials folder.
brand-generate
Generate an on-brand document from a saved Brand Profile.
fix
Universal debugging and fix application with semantic code analysis.
list
List available Piper TTS TTS voices with optional filtering.
review-video
Make a " Reviews" video — a fast, faceless VO montage of REAL, verified competitor reviews that names the recurring complaints and positions YOUR business as the alternative, then hands off to your own customer testimonials.
transcribe
Transcribe the file at $ARGUMENTS into Markdown using the Frenchie MCP server.