gather → reviewers(並列5) → supervise → COMPLETE のフローで、PR情報とリンクIssueを収集後、 5つの専門レビュワーが並列にレビューし、supervisorが統合サマリーを出力する。 review-only と review-fix-minimal は pr-review に置き換えて削除。
30 lines
633 B
Markdown
30 lines
633 B
Markdown
```markdown
|
|
# PR Information
|
|
|
|
## PR Overview
|
|
| Field | Details |
|
|
|-------|---------|
|
|
| PR Number | #{number} |
|
|
| Title | {PR title} |
|
|
| Labels | {label list} |
|
|
|
|
## Purpose & Requirements
|
|
{Purpose and requirements extracted from the PR description}
|
|
|
|
## Linked Issues
|
|
{State "None" if no issues are linked}
|
|
|
|
### Issue #{number}: {Issue title}
|
|
- Labels: {label list}
|
|
- Description: {Summary of Issue body}
|
|
- Key comments: {Summary of relevant comments}
|
|
|
|
## Changed Files
|
|
| File | Type | Lines Changed |
|
|
|------|------|---------------|
|
|
| `{file path}` | Added/Modified/Deleted | +{added} -{removed} |
|
|
|
|
## Diff
|
|
{Output of gh pr diff}
|
|
```
|