surgical-patch
작성자: juliusbrussee
가장 좁은 책임 계층에서 버그와 작은 동작 변경을 수정합니다. 회귀 검증, 주변 동작 보존, 작업 관련 테스트가 중요할 때 사용합니다.
npx skills add https://github.com/juliusbrussee/caveman --skill surgical-patchSurgical patch
Reproduce failure first when economical; otherwise capture strongest available evidence.
- Trace symptom to responsible mechanism.
- Change narrowest layer that owns incorrect behavior.
- Preserve unrelated behavior and user changes.
- Avoid cleanup, renaming, and abstraction outside fix.
- Add only regression proof relevant to task.
Run focused proof plus nearest affected gate. Stop when failure is fixed and regression proof passes.