What problem does it solve? Code that works but is hard to read accumulates technical debt: nested ternaries, redundant abstractions, and overly compact one-liners slow down reviews and future changes. This Skill refines recently modified code for clarity and consistency without altering its behavior. ## Core Features & Use Cases - Functionality-Preserving Refinement: Restructures code for readability while guaranteeing identical behavior, outputs, and features. - Project Standards Enforcement: Applies established conventions such as ES modules, explicit return types, function declarations, and consistent naming. - Complexity Reduction: Eliminates nested ternaries, redundant abstractions, dead code, and unnecessary nesting in favor of explicit, readable structures. - Use Case: After finishing a feature branch, ask the agent to review the modified files; it rewrites dense expressions like chained ternaries into clear switch or if/else statements and removes redundant helper functions. ## Quick Start Ask the agent to simplify and clean up the code you just modified in this session while keeping all functionality unchanged.