Technical Deslop Purpose Clean branch/staged diffs by removing AI-style slop and restoring repo-consistent style without changing behavior. When to use - A diff feels over-explained, overly defensive, or inconsistent with surrounding code. - You need a final cleanup pass before review/PR. - You want to normalize style after automated generation. Workflow 1. Capture scope with and . 2. Focus only on changed hunks (or user-scoped files). 3. Apply the cleanup sequence in . 4. Remove slop patterns: redundant comments, unnecessary defensive branches, non-idiomatic casts, and style drift. 5. Re-che…