What problem does it solve? Code written quickly during a session often ends up with unnecessary nesting, unclear names, redundant abstractions, and inconsistent style. This Skill cleans up recently modified code so it stays readable and consistent with project conventions, without altering what the code does. ## Core Features & Use Cases - Scoped Refinement: Only touches code modified in the current session, avoiding unrequested changes to untouched files. - Clarity-Focused Refactoring: Reduces nesting, removes dead code, improves naming, and applies project conventions while preserving behavior. - Naming Guidance: Enforces conventions like verb-phrase function names and is_/has_/can_ prefixes for booleans. - Use Case: After implementing a feature with deeply nested conditionals and vague variable names, ask the AI to simplify the changes — it flattens guard clauses, extracts validation into named functions, and verifies tests still pass. ## Quick Start Simplify the code I just changed in this session to make it clearer without changing its behavior.