De-Slop Remove AI-generated artifacts and code sloppiness while maintaining project structure. What Gets Cleaned 1. Console statements — Replace with logger service 2. types — Replace with proper types/interfaces 3. Unused imports — Remove completely 4. Commented-out code — Remove dead code blocks 5. Temporary/debug code — Remove TODO/FIXME debug statements 6. Obvious AI comments — Remove redundant comments 7. Unused variables — Remove if truly unused Workflow Step 1: Check Critical Rules Read project rules before making changes: Step 2: Detect Project Structure Determine if monorepo or singl…