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.

  1. 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
    
Installs
10
GitHub Stars
2
First Seen
Feb 28, 2026
eng-codebase-cleanup — hungv47/agent-skills