What problem does it solve? Code written quickly during development often accumulates unnecessary complexity, redundant abstractions, dead code, and duplicated helpers. This Skill reviews recently modified code and refines it for clarity and maintainability without changing any behavior. ## Core Features & Use Cases - Functionality-Preserving Refinement: Simplifies code structure, reduces nesting, removes dead branches and unused exports, and consolidates single-use helpers while keeping all outputs and behaviors identical. - Project Standards Enforcement: Applies codebase conventions such as ES modules, explicit return types, proper error handling, and consistent naming. - Duplicate Consolidation with truffler: Uses the find-similar-functions capability via bunx @rayhanadev/truffler to detect near-duplicate functions across modules and merge them into shared utilities. - Use Case: After implementing a new feature across several files, invoke this Skill to collapse pass-through wrappers, inline single-use functions, remove leftover scaffolding, and unify duplicated helpers before committing. ## Quick Start Ask the AI to deslop and simplify the code you just modified while keeping its behavior unchanged.