Cc-skills health

Kokoro TTS health check. TRIGGERS - kokoro health, tts health, kokoro status.

install
source · Clone the upstream repo
git clone https://github.com/terrylica/cc-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/terrylica/cc-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/kokoro-tts/skills/health" ~/.claude/skills/terrylica-cc-skills-health-940aab && rm -rf "$T"
manifest: plugins/kokoro-tts/skills/health/SKILL.md
source content

Kokoro TTS Health Check

Run 6 health checks to verify the Kokoro TTS engine installation.

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.

Checks

#CheckCommand
1Venv exists
[[ -d ~/.local/share/kokoro/.venv ]]
2Python 3.13
~/.local/share/kokoro/.venv/bin/python --version | grep 3.13
3mlx_audio import
python -c "from mlx_audio.tts.utils import load_model"
4kokoro_common.py
[[ -f ~/.local/share/kokoro/kokoro_common.py ]]
5tts_generate.py
[[ -f ~/.local/share/kokoro/tts_generate.py ]]
6version.json
[[ -f ~/.local/share/kokoro/version.json ]]

Execution

PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/kokoro-tts}"
bash "$PLUGIN_DIR/scripts/kokoro-install.sh" --health

Failure Recommendations

FailureRecommended Skill
Venv missinginstall
Import failsinstall or upgrade
Scripts missinginstall
version.jsoninstall

Troubleshooting

IssueCauseSolution
All checks failNot installedRun
/kokoro-tts:install
first
Only import failsVenv corrupted
kokoro-install.sh --uninstall
then
--install

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did the command succeed? — If not, fix the instruction or error table that caused the failure.
  2. Did parameters or output change? — If the underlying tool's interface drifted, update Usage examples and Parameters table to match.
  3. Was a workaround needed? — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround.

Only update if the issue is real and reproducible — not speculative.