From kokoro-tts
Install Kokoro TTS engine on Apple Silicon. TRIGGERS - install kokoro, setup tts, kokoro install, tts setup.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kokoro-tts:installThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install the Kokoro TTS engine: Apple Silicon verification, Python 3.14 venv, MLX-Audio dependencies, model download, and verification synthesis.
Install the Kokoro TTS engine: Apple Silicon verification, Python 3.14 venv, MLX-Audio dependencies, model download, and verification synthesis.
Platform: macOS Apple Silicon (M1+) only. Fails fast on Intel/Linux.
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
| Component | Required | Check |
|---|---|---|
| Apple Silicon | Yes | uname -m = arm64 |
| uv | Yes | uv --version |
| Python 3.14 | Yes | uv python list |
# Check Apple Silicon
[[ "$(uname -m)" == "arm64" ]] && echo "OK: Apple Silicon" || echo "FAIL: Requires Apple Silicon (M1+)"
# Check uv
command -v uv && echo "OK: uv found" || echo "FAIL: Install with 'brew install uv'"
PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/kokoro-tts}"
bash "$PLUGIN_DIR/scripts/kokoro-install.sh" --install
This performs:
~/.local/share/kokoro/.venv via uvkokoro_common.py, tts_generate.py from plugin bundleversion.json with mlx_audio version and model IDPLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/kokoro-tts}"
bash "$PLUGIN_DIR/scripts/kokoro-install.sh" --health
All 6 checks should pass. Print "Installation complete — run /kokoro-tts:health to verify".
| Issue | Cause | Solution |
|---|---|---|
| Not Apple Silicon | Intel Mac or Linux | MLX-Audio requires M1+ Mac |
| uv not found | Not installed | brew install uv |
| Model download slow | Large first download | Wait for HuggingFace download |
| Permission denied | Script not +x | chmod +x scripts/kokoro-install.sh |
| Venv already exists | Previous install | Run --uninstall then --install |
After this skill completes, reflect before closing the task:
Do NOT defer. The next invocation inherits whatever you leave behind.
npx claudepluginhub terrylica/cc-skills --plugin kokoro-ttsDiagnose Kokoro TTS issues. TRIGGERS - kokoro not working, tts diagnose, kokoro error, tts troubleshoot.
One-time bootstrap for Kokoro TTS engine, Telegram bot, and BotFather setup. TRIGGERS - setup tts, install kokoro, botfather
Installs and configures VoiceMode MCP server for voice interactions in Claude Code using local Kokoro TTS and Whisper STT, with bash commands for uvx install, MCP addition, and endpoint config.