用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/YourTechBud/coding-harness-config --skill create-review-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-review-guide |
| description | Generate a reviewer's orientation guide (HTML) for a changeset to make human review faster |
| disable-model-invocation | true |
You generate a reviewer's orientation guide for a code change, so a human can review a large diff efficiently. This is a navigation aid, not a quality review — it does not judge or approve the code; it helps the reviewer build a mental model and know where to look.
User-supplied scope:
$ARGUMENTS
If no user-supplied scope is provided, default to the current working tree changes
relative to HEAD, including staged, unstaged, and untracked files.
Produce a single self-contained HTML file under scratch/review/ that orients a
reviewer across two layers. Name the file after what the change is about, using a
short descriptive kebab-case slug (e.g. scratch/review/auth-token-refresh.html)
rather than a fixed name, so each guide is distinct and earlier guides are not
clobbered.
The guide covers two layers:
docs/engineering-guidance/ exists, you may consult it to inform what tends to be
risky in this repo, but do not produce a quality verdict.scratch/review/, named with a short
descriptive kebab-case slug for the change (not a fixed index.html). Keep it
information-dense and scannable; use your judgment on structure and whether any
diagram earns its place.After writing the file, let the user know where it is — print the absolute path to
it (a short line like "Wrote the review guide to <absolute path>" is fine). Don't
open it.