clean-component-removal
Original:🇺🇸 English
Translated
Remove TTS and Telegram sync components cleanly. TRIGGERS - uninstall tts, remove telegram bot, uninstall kokoro, clean tts, teardown, component removal.
9installs
Sourceterrylica/cc-skills
Added on
NPX Install
npx skill4agent add terrylica/cc-skills clean-component-removalTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Clean Component Removal
Orderly teardown of TTS and Telegram bot components with proper sequencing to avoid orphaned processes and stale state.
Platform: macOS (Apple Silicon)
When to Use This Skill
- User wants to uninstall the Kokoro TTS engine
- User wants to remove the Telegram bot
- User wants to clean up all TTS-related files
- User wants to do a full teardown before reinstallation
- User wants to remove specific components selectively
Requirements
- No special tools needed (removal uses only ,
rm, and the install script)pkill - User confirmation before destructive operations
Removal Order
The removal sequence matters. Components must be torn down in this order to avoid orphaned processes or lock contention.
| Step | Component | Command | Reversible? |
|---|---|---|---|
| 1 | Bot process | | Yes (restart bot) |
| 2 | Kokoro venv | | Yes (reinstall) |
| 3 | Shell symlinks | | Yes (re-symlink) |
| 4 | Temp files | | N/A |
| 5 | Secrets (optional) | | Requires re-creation |
What Is NOT Removed (Unless Explicitly Asked)
These are preserved by default to allow easy reinstallation:
| Resource | Path | Why Preserved |
|---|---|---|
| Model cache | | ~400MB download, reusable |
| Bot source code | | Git-tracked, not ephemeral |
| mise.toml config | | Configuration SSoT |
| Centralized logs | | Audit trail |
Workflow Phases
Phase 1: Confirmation
Use AskUserQuestion to confirm which components to remove. Present options:
- Full teardown -- Remove everything (steps 1-4, ask about secrets)
- TTS only -- Remove Kokoro venv + symlinks + temp files (steps 2-4)
- Bot only -- Stop bot process (step 1 only)
- Selective -- Let user pick individual steps
Phase 2: Stop Bot Process
bash
# Check if bot is running
pgrep -la 'bun.*src/main.ts'
# Stop it
pkill -f 'bun.*src/main.ts' || echo "Bot was not running"Phase 3: Remove Kokoro Venv
bash
# Uses kokoro-install.sh --uninstall (removes venv, keeps model cache)
~/eon/cc-skills/plugins/tts-telegram-sync/scripts/kokoro-install.sh --uninstallPhase 4: Remove Symlinks
bash
# List existing symlinks first
ls -la ~/.local/bin/tts_*.sh 2>/dev/null
# Remove them
rm -f ~/.local/bin/tts_*.shPhase 5: Clean Temp Files
bash
rm -f /tmp/kokoro-tts-*.wav
rm -f /tmp/kokoro-tts.lockPhase 6: Optional Secret Removal
Only with explicit user confirmation:
bash
# Show what would be removed
ls -la ~/.claude/.secrets/ccterrybot-telegram
# Remove (requires confirmation)
rm -f ~/.claude/.secrets/ccterrybot-telegramTodoWrite Task Templates
1. [Confirm] Ask user which components to remove via AskUserQuestion
2. [Stop] Stop bot process
3. [Venv] Run kokoro-install.sh --uninstall
4. [Symlinks] Remove ~/.local/bin/ symlinks
5. [Temp] Clean /tmp/ TTS files
6. [Secrets] Optionally remove secrets (with confirmation)
7. [Verify] Confirm all selected components removedPost-Change Checklist
- Bot process is not running (returns nothing)
pgrep -la 'bun.*src/main.ts' - Kokoro venv removed (returns "No such file")
ls ~/.local/share/kokoro/.venv - Symlinks removed (returns "No such file")
ls ~/.local/bin/tts_*.sh - No stale lock file (returns "No such file")
ls /tmp/kokoro-tts.lock - No orphan audio processes (returns nothing)
pgrep -x afplay
Troubleshooting
| Problem | Likely Cause | Fix |
|---|---|---|
| Symlinks still exist after removal | Glob mismatch or permission | |
| Stale lock after removal | Process died without cleanup | |
| Model cache taking space | ~400MB in HuggingFace cache | |
| Bot respawns after kill | Launched with | Check |
| Audio still playing after teardown | | |
Reference Documentation
- Evolution Log -- Change history for this skill