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
    
  2. Identify entry points and config files

    • package.json, pyproject.toml, requirements.txt, Cargo.toml
    • Main entry files (index., main., app., server.)
Related skills

More from hungv47/agent-skills

Installs
10
GitHub Stars
2
First Seen
Feb 28, 2026
Security Audits