一键导入
code-review
Review changes since a fixed ref along two axes (Standards & Spec) using parallel sub-agents. Use when reviewing branches, PRs, or diffs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review changes since a fixed ref along two axes (Standards & Spec) using parallel sub-agents. Use when reviewing branches, PRs, or diffs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when starting any conversation - establishes how to find and use skills, requiring skill tool invocation before ANY response including clarifying questions.
Use when exploring or modifying a codebase and you need a cheap structural map of files, directories, imports, exports, or direct members before reading full source.
Guide for writing ast-grep rules to perform structural code search and analysis. Use when searching codebases using AST patterns, finding specific language constructs, or executing complex structural code queries.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when executing implementation plans with independent tasks in the current session.
| name | code-review |
| description | Review changes since a fixed ref along two axes (Standards & Spec) using parallel sub-agents. Use when reviewing branches, PRs, or diffs. |
Perform a two-axis review of the diff between HEAD and a specified target ref:
Both axes run via parallel sub-agents using the agent tool to prevent context pollution, then findings are presented side-by-side without re-ranking.
Identify the target ref (main, HEAD~1, commit SHA, branch, tag).
Run diff checks:
git rev-parse <target-ref>
git diff <target-ref>...HEAD
git log <target-ref>..HEAD --oneline
Confirm the ref exists and the diff is non-empty before proceeding.
docs/, specs/), or user description.CODING_STANDARDS.md, CONTRIBUTING.md, style guides) plus the Fowler Smell Baseline:
(Note: Repo-documented standards override baseline smells.)
Dispatch two sub-agents simultaneously using the agent tool:
Standards Sub-Agent Prompt:
Spec Compliance Sub-Agent Prompt:
Present reports under ## Standards and ## Spec Compliance headers side-by-side. Do not merge or re-rank findings across axes.
End with a 1-line summary per axis noting finding counts and top concerns.