minimal-diff-builder
Installation
SKILL.md
Minimal Diff Builder
Default to the smallest correct change, not the most expandable design.
Use When
- the user asks for the simplest implementation, shortest path, or least code;
- the task is local and well scoped;
- dependency avoidance matters;
- the repo already risks overbuilding or abstraction creep.
Pair With
- Use
delivery-preflight-gatefirst when the task is long, autonomous, or the repo baseline may already be broken. - Use
test-driven-executionalongside this skill when the main risk is behavior drift rather than overbuilding. - Use
overengineering-reviewafter implementation when the user wants a separate simplification pass on the resulting diff.