gather → reviewers(並列5) → supervise → COMPLETE のフローで、PR情報とリンクIssueを収集後、 5つの専門レビュワーが並列にレビューし、supervisorが統合サマリーを出力する。 review-only と review-fix-minimal は pr-review に置き換えて削除。
704 B
704 B
Gather PR information and produce a report for reviewers to reference.
Do:
- Extract the PR number from the task ("PR #42", "#42", "pull/42", etc.)
- Run
gh pr view {number}to retrieve the PR title, description, and labels - Run
gh pr diff {number}to retrieve the diff - Compile the list of changed files
- Extract the purpose and requirements from the PR description
- If linked Issues exist, retrieve them with
gh issue view {number}- Extract Issue numbers from "Closes #N", "Fixes #N", "Resolves #N" in the PR description
- Collect the Issue title, description, labels, and comments
If no PR number is found:
- Inspect the branch diff and identify the code under review