agents/openai.yaml
interface: display_name: "Surgical Patch" short_description: "Fix narrow responsible layer with proof" default_prompt: "Use $surgical-patch to fix this bug with a narrow verified change."
juliusbrussee/caveman · GitHub
버그와 사소한 동작 변화를 책임 범위가 가장 좁은 계층에서 수정하십시오. 회귀 현상이 발생하지 않고, 주변 동작이 유지되며, 작업과 관련된 테스트가 중요한 경우에 이 방법을 사용하십시오.
프로젝트 폴더에서 아래 명령어를 실행하고, 설치할 에이전트를 선택하세요.
npx skills add juliusbrussee/caveman --skill surgical-patch설치 명령을 직접 실행해야 적용됩니다. 지원 에이전트와 필요한 권한·라이선스는 제작자의 안내를 확인하세요.
agents/openai.yamlinterface: display_name: "Surgical Patch" short_description: "Fix narrow responsible layer with proof" default_prompt: "Use $surgical-patch to fix this bug with a narrow verified change."
SKILL.md--- name: surgical-patch description: Fix bugs and small behavior changes at the narrowest responsible layer. Use when regression proof, preserved surrounding behavior, and task-relevant tests matter. --- # Surgical 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.