simplify
Installation
SKILL.md
Simplify
Simplification means fewer moving parts, clearer names, smaller surfaces, and less surprise. Do not flatten useful domain detail just to make something shorter.
Workflow
- Find the real source of complexity: branching, state, naming, dependency direction, data shape, side effects, or wording.
- Preserve public behavior unless the user explicitly wants a behavior change.
- Prefer local improvements before broad rewrites.
- Remove abstractions that are used once or hide simple logic.
- Keep abstractions that encode a real invariant or prevent repeated mistakes.
- Validate with existing tests or the smallest relevant check.