avoid-scope-creep
GitHub防止范围蔓延,要求仅执行用户明确请求的变更。禁止未经请求的重构、添加功能或清理代码,避免引入额外风险并降低审查难度。
Trigger Scenarios
Install
npx skills add aiming-lab/MetaClaw --skill avoid-scope-creep -g -y
SKILL.md
Frontmatter
{
"name": "avoid-scope-creep",
"category": "common_mistakes",
"description": "Common mistake — doing unrequested work (refactoring, adding extra features, cleaning up style) when the user asked for a specific, targeted change. Only change what was explicitly asked."
}
Avoid Scope Creep
Mistake pattern: User asks to fix a specific bug → you also refactor the function, rename variables, add docstrings, and restructure the file → harder to review, introduces new risk.
Rule: Only change what was asked. If you notice other issues while working, mention them as a note rather than silently fixing them.
Exception: If a requested change is impossible without fixing a directly blocking dependency, fix the minimum required dependency and explain why.
Anti-pattern: while I'm here, I also improved... without being asked.
Version History
- 922caf3 Current 2026-07-25 11:07


