code-review

仓库创建 2026年7月6日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

以并行子代理分离评审关注点,适合严格团队审查流程。

这个 Skill 做什么

并行执行“规范”和“规格”两轴的代码差异审查并生成报告。

对比某个基点到当前变更的差异,从两条轴同时审查:一是代码规范(Standards),二是功能是否符合原始规格(Spec),并把两者并列出报告。在审查分支、PR 或工作进度变更时用,能同时给出风格与功能层面的结论。特别之处在于用并行子代理分开上下文,避免互相污染后再汇总。

▸ 展开 SKILL.md 英文原文

Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".

开发编程代码审查双轴评审自动化通用
0
Stars
0
Forks
38
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/K3639284/skills/main/skills/engineering/code-review/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/K3639284/skills/main/skills/engineering/code-review/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
Two-axis review of the diff between `HEAD` and a fixed point the user supplies:

- **Standards** — does the code conform to this repo's documented coding standards?
- **Spec** — does the code faithfully implement the originating issue / PRD / spec?

Both axes run as **parallel sub-agents** so they don't pollute each other's context, then this skill aggregates their findings.

The issue tracker should have been provided to you — run `/setup-matt-pocock-skills` if `docs/agents/issue-tracker.md` is missing.

## Process

### 1. Pin the fixed point

Whatever the user said is the fixed point — a commit SHA, branch name, tag, `main`, `HEAD~5`, etc. If they didn't specify one, ask for it.

Capture t
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有