cleanproject
Installation
SKILL.md
Clean Project
I'll help clean up development artifacts while preserving your working code.
Token Optimization:
This skill is optimized for 75% token reduction (2,000-3,000 → 500-750 tokens) through Bash-based cleanup operations and template-based pattern matching.
Core Optimization Strategies:
- Bash-Based Cleanup Operations (70-80% savings)
- Use
find+rmcommands for file deletion (external tools) - Execute
git status --porcelainfor untracked file detection - Use
ls -lafor directory size verification - Pattern:
find . -name "*.log" -type f -delete - Never use Read tool - only Bash commands for cleanup
- Use