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/stop-server)<a href="https://agentmods.dev/commands/twinpeakstownie/claude-to-speech/stop-server"><img src="https://agentmods.dev/badge/commands/twinpeakstownie/claude-to-speech/stop-server/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/stop-server"><img src="https://agentmods.dev/badge/commands/twinpeakstownie/claude-to-speech/stop-server.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.00005 | $0.00148 |
| Opus 5 | $0.00003 | $0.00074 |
| Sonnet 5 | $0.00001 | $0.00030 |
| Haiku 4.5 | $0.00001 | $0.00015 |
Grade A, and why
stop-server scanned grade A with 0 findings 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 10d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Stopping TTS server...
PID_FILE="${CLAUDE_PLUGIN_ROOT}/tts_server.pid"
if [ -f "$PID_FILE" ]; then
PID=$(cat "$PID_FILE")
if kill -0 $PID 2>/dev/null; then
kill $PID
rm "$PID_FILE"
echo "TTS server stopped (PID: $PID)"
else
rm "$PID_FILE"
echo "Server not running (stale PID file removed)"
fi
else
pkill -f "python3 tts_server.py" && echo "TTS server stopped" || echo "Server not running"
fi
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.
- 10d ago First seen · 23 lines · 5 tokens per session scan A 850d08e80455
stop-server is a command published in the GitHub repository TwinPeaksTownie/Claude-to-Speech (19 stars, last pushed 5mo ago), licensed MIT. It adds 5 tokens to every session and 148 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
report
Generate a project analytics report covering code quality, velocity, and health metrics.
debug-pod
Debug a failing or unhealthy Kubernetes pod by analyzing events, logs, and configuration.
explain
Explain a code file, function, or concept in clear, structured language.
document-all
Auto-document the entire codebase by generating module-level docs, function signatures, and API references.
fix-comments
Address PR review comments by implementing requested changes automatically.
style
Apply styling to a component using the project's design system and styling approach.