
Remove
- 64 installs
- 62 repo stars
- Updated August 3, 2026
- terrylica/cc-skills
Helps with ai & agent building tasks.
About
remove is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- remove
- AI & Agent Building
- AI-coding skill
Remove by the numbers
- 64 all-time installs (skills.sh)
- Ranked #6,160 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/terrylica/cc-skills --skill removeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 64 |
|---|---|
| repo stars | ★ 62 |
| Last updated | August 3, 2026 |
| Repository | terrylica/cc-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Remove Kokoro TTS
Clean uninstall of the Kokoro TTS engine. Preserves model cache by default.
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.
What Gets Removed
- Python venv at
~/.local/share/kokoro/.venv - Scripts:
tts_generate.py,kokoro_common.py - Metadata:
version.json - Directory
~/.local/share/kokoro/(if empty after cleanup)
What Gets Preserved
- Model cache at
~/.cache/huggingface/hub/models--mlx-community--Kokoro-82M-bf16/ - Launchd plist (if server was configured)
Workflow
Step 1: Confirm with user
Use AskUserQuestion to confirm removal. Mention what will be removed and what will be preserved.
Step 2: Stop server (if running)
# Stop launchd service if exists
launchctl bootout gui/$(id -u) ~/Library/LaunchAgents/com.terryli.kokoro-tts-server.plist 2>/dev/null || trueStep 3: Uninstall
PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/kokoro-tts}"
bash "$PLUGIN_DIR/scripts/kokoro-install.sh" --uninstallStep 4: (Optional) Remove model cache
Only if user explicitly requests full cleanup:
rm -rf ~/.cache/huggingface/hub/models--mlx-community--Kokoro-82M-bf16Step 5: (Optional) Remove launchd plist
rm -f ~/Library/LaunchAgents/com.terryli.kokoro-tts-server.plistPost-Removal
To reinstall later: /kokoro-tts:install
Post-Execution Reflection
After this skill completes, reflect before closing the task:
0. Locate yourself. — Find this SKILL.md's canonical path before editing. 1. What failed? — Fix the instruction that caused it. 2. What worked better than expected? — Promote to recommended practice. 3. What drifted? — Fix any script, reference, or dependency that no longer matches reality. 4. Log it. — Evolution-log entry with trigger, fix, and evidence.
Do NOT defer. The next invocation inherits whatever you leave behind.