eng-codebase-cleanup
Installation
SKILL.md
Codebase Cleanup
Reorganize and clean codebases without breaking functionality.
Workflow
Phase 1: Analysis
Before touching anything, understand the codebase.
- Map the directory structure
find . -type f -name "*.py" -o -name "*.js" -o -name "*.ts" -o -name "*.jsx" -o -name "*.tsx" | head -100 tree -L 3 -I 'node_modules|.git|__pycache__|.next|dist|build|venv|.venv' || find . -maxdepth 3 -type d | grep -v node_modules | grep -v .git