What problem does it solve? Code that works but is hard to read accumulates technical debt: nested ternaries, redundant abstractions, and inconsistent patterns slow down reviews and future changes. This Skill refines recently modified code for clarity and maintainability without altering its behavior. ## Core Features & Use Cases - Behavior-Preserving Refactoring: Simplifies code structure while guaranteeing all original features, outputs, and behaviors remain intact. - Project Standards Enforcement: Applies established conventions such as ES modules, explicit return types, proper React component patterns, and consistent naming. - Complexity Reduction: Eliminates nested ternaries, redundant abstractions, unnecessary nesting, and overly compact one-liners in favor of explicit, readable code. - Use Case: After finishing a feature branch, ask the Skill to review the modified files; it rewrites a nested ternary status expression into a clear function with early returns and splits dense chained array operations into named steps. ## Quick Start Ask the assistant to simplify and clean up the code you just modified in this session without changing its behavior.