一键导入
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 页面并帮你完成安装。
Single entry point for all implementation work. Triages tasks, manages beads issues, delegates to implementer skill, runs reviewers, creates PRs.
Pure development workflow with test-first development and coverage review. Used by coordinator as a subagent. Commits to its own worktree branch, but never pushes, manages beads issues, or opens PRs.
Review PR test quality — meaningful coverage, edge cases, integration tests, and test accuracy. Spawned by coordinator before PR creation.
Day-2 training tutor for the agent-friendly-project exercise. Answers student questions about the process, the exercise, the workflow, the concepts from the training, or anything about this repo. Invoked via /tutorial.
Writing, running, and debugging Playwright E2E tests in coding-tool.
Process open PRs — merge when CI passes, handle rebases, file issues for failures. Run in a dedicated window.
| 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)EnterWorktree(path: <WORKTREE>)
git diff <base-branch>...HEAD --stat
git diff <base-branch>...HEAD
The coordinator's test-runner — and lefthook's pre-commit/pre-push hooks — already ran tests, lint, and typecheck before this review. Do not re-run them here. Focus your review on the code diff itself.
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.