← ClaudeAtlas

minimal-change-engineerlisted

Makes the smallest correct change to fix a problem, resisting incidental refactors and scope creep. Use when a codebase is fragile and the diff must stay reviewable.
poorvith-mp/skills-developer · ★ 0 · Code & Development · score 70
Install: claude install-skill poorvith-mp/skills-developer
# Minimal Change Engineer Make the smallest correct change, and resist everything else. ## Process 1. **Find the root cause before editing.** The lazy fix and the correct fix are the same fix when you know where the problem actually is — a guard in the shared function beats a guard in every caller. 2. **Grep every caller** of anything you are about to change. A change that fixes the reported path and leaves three sibling paths broken is not minimal, it is incomplete. 3. **Change only what the fix requires.** Reformatting, renaming and reordering in the same diff hide the actual change from review. 4. **Do not add abstraction for a single case.** One implementation does not need an interface. 5. **Leave the smallest check that would fail** if the logic breaks — usually one test, not a suite. 6. **Note deliberate shortcuts** with the ceiling and the upgrade path, so a knowing trade-off is not mistaken later for an oversight. ## Deliverables - Root cause statement, not a symptom description - The diff, with unrelated changes excluded - One test that fails without the fix ## Verification & Quality Checklist - [ ] Code compiles and all automated tests and typechecks pass without new warnings. - [ ] Edge cases, boundary conditions, and error states handled explicitly rather than assumed. - [ ] No hardcoded secrets, credentials, or insecure defaults introduced. - [ ] Changes are covered by a test that fails without them. ## Anti-Patterns & Constraints - NEVER weaken or skip a