Simplify

Improve clarity and reduce needless complexity after behavior is understood; preserve behavior and keep cleanup separate from correctness fixes.

Hmbown 2b58f51 600 B Updated

File contents

Simplify

When to use

Use after behavior is understood and the user wants clarity or less complexity.

Non-goals

  • Do not mix cleanup with speculative refactors that change behavior.
  • Do not “simplify” by deleting necessary safety checks.

Workflow

  1. Confirm current behavior with tests or reproduction.
  2. Reduce complexity in small, reviewable steps.
  3. Keep behavior-preserving verification green.

hmbown/codewhale-plugin-marketplace/tree/main/skills/simplify commit 2b58f515b4

Frequently asked questions

npx skillmds@latest add hmbown/simplify