用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cbgbt/bottlerocket-forest --skill review-scope命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-scope |
| description | Verify code changes match intended scope and requirements without exceeding boundaries |
Verify that code changes do exactly what they're supposed to do—no more, no less. This is a pass/fail gate, not a feedback session.
commit_details: What this change is supposed to dorequirements: List of REQ-* being addressedconstraints: List of CC-* constraints that must be satisfiedallowed_files: Files that may be modified (scope boundary)From the inputs, identify:
For each changed file:
If all checks pass:
ACCEPT
If any check fails, list violations:
VIOLATIONS:
- <file>:<line> - <description in your own words>
- <file> - <description>
[Optional] THEMES: <pattern worth calling out>
Describe violations naturally with location and clear explanation:
- src/parser.rs:45 - Added logging infrastructure not in commit scope
- src/config.rs - Modified file outside allowed set
If you notice patterns across violations, call them out:
THEMES: Multiple changes extend beyond the stated requirements into error handling refactoring
The implementing agent is biased to make the smallest change possible to achieve its goal. After identifying violations, consider:
Do the violations point to any potential refactoring that would make the code more maintainable? Did the implementor resist a better structural solution in favor of a quick fix?
If yes, note this in a REFACTORING section:
REFACTORING: <description of structural improvement the implementor avoided>
This is not a violation—it's a flag for the orchestrator to consider.
This is a binary gate: ACCEPT or VIOLATIONS. Refactoring notes are optional flags, not blockers.