用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MatrixFounder/Agentic-development --skill code-review-checklist命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | code-review-checklist |
| description | Structured checklist for code review: bugs, style, performance, security, docs. |
| tier | 1 |
| version | 1.3 |
Before acting on a "remove dead code" finding
- Grep the symbol repo-wide — never scope the search to a test directory. Tests are not always in one: Go keeps
*_test.gobeside the source, Rust puts unit tests inline under#[cfg(test)], JS/TS co-locates*.spec.ts/__tests__/, Python usestests/, Foundry usestest/*.t.sol. A directory-scoped grep returns "nothing depends on it" precisely where that answer is wrong.- If a test drives it, the fix is not deletion — make production reach the branch (wire the flag, pass the parameter) so code and requirement agree.
- Report it as "unreachable and covered by test X", not "dead, delete". A finding can be right about the smell and wrong about the fix.
.AGENTS.md updated for touched source directories under memory tracking policy (or bootstrap step recorded)?documentation-standards §4.1)
The reviewer owns this one: the author's own check passes even when it ran too early.EXPLAIN_PASS_REASON match the code?documentation-standards §4.1)python3 .agent/skills/documentation-standards/scripts/check_positional_refs.py --targets-changed
was run — it selects documents citing the files this change touched, which default diff
scope does not — and --fix landed in the same commit. A coordinate corrected later was
false in a commit someone can check out.REFERENT_ABSENT and REFERENT_AMBIGUOUS, or each survivor
carries a written reason. REFERENT_ABSENT means the cited text was edited, so the sentence
citing it needs re-reading — not a new number.Severity is a named value, never a glyph (documentation-standards §5.5 rule 5).