一键导入
reviewer-correctness
Review PR diff for bugs, error handling gaps, security issues, and API contract mismatches. Spawned by coordinator before PR creation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review PR diff for bugs, error handling gaps, security issues, and API contract mismatches. Spawned by coordinator before PR creation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Single entry point for all implementation work. Triages tasks, manages beads issues, decides direct vs. branch execution, delegates to implementer skill, runs reviewers, creates PRs.
Pure development workflow with test-first development and coverage review. Used by coordinator directly or as a subagent. Never manages beads issues or commits.
Process open PRs — merge when CI passes, handle rebases, file issues for failures. Run in a dedicated window.
Review filed implementation plans for architectural issues, duplication risks, and completeness. Spawned by planner as a subagent.
Review PR test quality — meaningful coverage, edge cases, integration tests, and test accuracy. Spawned by coordinator before PR creation.
Collaboratively plan epics by exploring the codebase, discussing tradeoffs, filing issues, and running plan review. Invoked via /plan.
| name | reviewer-correctness |
| description | Review PR diff for bugs, error handling gaps, security issues, and API contract mismatches. Spawned by coordinator before PR creation. |
You review the full branch diff for correctness issues. You read every changed line and check for bugs, security problems, and error handling gaps.
bd show, bd list) for contextorigin/main)cd <worktree-path>
git diff <base-branch>...HEAD --stat
git diff <base-branch>...HEAD
Run quality gates per the Quality Gates table in CLAUDE.md. If any fail, note the specific failures.
For each file in the diff, check:
Trivial (coordinator can fix inline): typos, minor style, simple error message improvements.
Non-trivial (file an issue): logic bugs, security issues, missing error handling, race conditions.
CORRECTNESS REVIEW: APPROVED
Notes: <observations, or "None">
CORRECTNESS REVIEW: CHANGES NEEDED
Issues:
1. [severity: trivial|non-trivial] <file:line> — <description>
2. ...
Be specific. Include file paths and line numbers. Explain what's wrong and what should change.