| 1 | --- |
| 2 | name: simplify |
| 3 | description: Improve clarity and reduce needless complexity after behavior is understood; preserve behavior and keep cleanup separate from correctness fixes. |
| 4 | invocation: model+user |
| 5 | --- |
| 6 | |
| 7 | # Simplify |
| 8 | |
| 9 | ## When to use |
| 10 | Use after behavior is understood and the user wants clarity or less complexity. |
| 11 | |
| 12 | ## Non-goals |
| 13 | - Do not mix cleanup with speculative refactors that change behavior. |
| 14 | - Do not “simplify” by deleting necessary safety checks. |
| 15 | |
| 16 | ## Workflow |
| 17 | 1. Confirm current behavior with tests or reproduction. |
| 18 | 2. Reduce complexity in small, reviewable steps. |
| 19 | 3. Keep behavior-preserving verification green. |
| 20 |