From tts-tg-sync
Upgrade Kokoro model, bot dependencies, or TTS components. TRIGGERS - upgrade kokoro, update model, upgrade bot
How this skill is triggered — by the user, by Claude, or both
Slash command
/tts-tg-sync:component-version-upgradeThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Upgrade individual components of the TTS + Telegram bot stack without rebuilding the entire system.
Upgrade individual components of the TTS + Telegram bot stack without rebuilding the entire system.
Platform: macOS (Apple Silicon)
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.
tts_generate.py from the plugin bundleuv installed (brew install uv)mise installed and configuredfull-stack-bootstrap first if not installed)| Component | Command | What It Does |
|---|---|---|
| Kokoro TTS engine | kokoro-install.sh --upgrade | Upgrades Python deps, re-downloads model, updates version.json |
| Bot dependencies | cd ~/.claude/automation/claude-telegram-sync && bun update | Updates Bun packages per package.json |
| tts_generate.py | Re-copy from plugin scripts/ to ~/.local/share/kokoro/ | Updates the TTS generation script |
| Bun runtime | mise use bun@latest | Updates the Bun version in mise.toml |
Ask the user which component to upgrade using AskUserQuestion. Present the four options above.
# Run health check to establish baseline
~/.local/share/kokoro/../../eon/cc-skills/plugins/tts-tg-sync/scripts/kokoro-install.sh --health
# Record current versions
cat ~/.local/share/kokoro/version.json
Run the appropriate upgrade command for the selected component.
# Health check again
kokoro-install.sh --health
# Generate test audio to verify TTS still works
~/.local/share/kokoro/.venv/bin/python ~/.local/share/kokoro/tts_generate.py \
--text "Upgrade verification test" --voice af_heart --lang en-us --speed 1.0 \
--output /tmp/kokoro-tts-upgrade-test.wav
If bot dependencies or Bun runtime were upgraded, restart the bot:
pkill -f 'bun.*src/main.ts' || true
cd ~/.claude/automation/claude-telegram-sync && bun --watch run src/main.ts
1. [Identify] Present upgradeable components via AskUserQuestion
2. [Preflight] Run health check on target component
3. [Backup] Note current versions (version.json, package.json)
4. [Upgrade] Execute upgrade command
5. [Verify] Run post-upgrade health check
6. [Test] Generate test audio to verify TTS still works
7. [Restart] Restart bot if needed
8. [Report] Show before/after versions
| Problem | Likely Cause | Fix |
|---|---|---|
| Upgrade fails | No internet or PyPI issue | Check connectivity, retry |
| Model download slow | First-time ~400MB, subsequent cached | Wait for download to complete |
| Version mismatch | Stale version.json | Re-run kokoro-install.sh --health to check, --upgrade to fix |
| MLX-Audio import fails | mlx-audio version incompatibility | kokoro-install.sh --upgrade reinstalls mlx-audio |
| Bot won't start after upgrade | Dependency conflict | cd ~/.claude/automation/claude-telegram-sync && bun 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 tts-tg-syncGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.