Agent Skills
› JuliusBrussee/caveman
› surgical-patch
surgical-patch
GitHub专注于在最小责任层修复Bug和微小行为变更,确保回归测试通过且不破坏周边行为。适用于需要严格保留现有功能且对代码侵入性极低的场景。
触发场景
修复已知Bug
进行微小的行为调整
需要避免副作用的代码修正
安装
npx skills add JuliusBrussee/caveman --skill surgical-patch -g -y
SKILL.md
Frontmatter
{
"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.
版本历史
- 12aa8cc 当前 2026-08-16 08:55


