What problem does it solve? Code that works is often still hard to read: bloated names, redundant comments, and overfitted logic left over from the development conversation. This Skill reviews finished code before human review and tightens wording, naming, and structure without changing behavior. ## Core Features & Use Cases - Word Choice Review: Applies Orwell's rules to variable names, function names, and comments, preferring short Anglo-Saxon words over Latinate jargon. - Structural Simplification: Reorders files with the inverted pyramid, splits monoliths into single-concept modules, merges overlapping concepts, and removes derivable state. - Overfitting Detection: Removes names, comments, and backwards-compatibility shims that only make sense in the context of the current branch or conversation. - Use Case: After finishing a feature branch, run this Skill to prune redundant comments, rename hedged identifiers like lastObservedDiskContent to baseline, and drop compatibility code for unshipped APIs before opening a pull request. ## Quick Start Review the changes in my current branch and simplify names, comments, and structure without changing behavior.