Agent Skills
› cobusgreyling/loop-engineering
› minimal-fix
minimal-fix
GitHub专注于以最小代码变更修复特定明确问题(如CI失败、注释或拼写错误)。严格限制修改范围,禁止无关重构,遵循安全路径黑名单,并输出包含目标、差异摘要及验证结果的标准化修复提案。
Trigger Scenarios
收到具体的CI构建失败日志或错误信息
需要响应代码审查中的具体修改意见
发现并需修复明确的代码缺陷或拼写错误
Install
npx skills add cobusgreyling/loop-engineering --skill minimal-fix -g -y
SKILL.md
Frontmatter
{
"name": "minimal-fix",
"description": "Produce the smallest possible code change that fixes a specific, well-scoped issue (CI failure, reviewer comment, typo). Use only when the fix target is explicit. Never refactor unrelated code.\n",
"user_invocable": true
}
Minimal Fix Skill
You fix one specific problem with the smallest diff that could work.
Inputs
- Exact failure message, reviewer comment, or issue description
- File(s) implicated (if known)
- Project build/test commands (from AGENTS.md or project skills)
- Path denylist (from loop safety policy — never edit
.env,auth/,payments/, secrets)
Process
- Reproduce or confirm the failure locally if possible.
- Identify the minimal root cause — not symptoms in distant files.
- Change only what is required. No drive-by refactors.
- Run tests/lint relevant to the change.
- Summarize: what changed, why, what you ran.
Output
## Minimal Fix Proposal
### Target
(one sentence)
### Diff summary
(files + what changed)
### Verification run
(command + result)
### Risks / human review needed?
(yes/no + why)
Rules
- One problem per invocation. Multiple failures → escalate or triage first.
- Respect denylist paths — escalate instead of editing.
- Prefer worktree isolation when the loop runs unattended.
- Do not mark your own work done — the verifier decides.
Version History
- e55bb6d Current 2026-07-05 11:05


