ワンクリックで
batch-review
Morning review of batch PRs. Shows status, CodeRabbit feedback, and lint/build results for all recent batch PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Morning review of batch PRs. Shows status, CodeRabbit feedback, and lint/build results for all recent batch PRs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Implement UI from Figma designs via MCP with a closed-loop pixel-parity check. Extract exact values (never eyeball), translate to SwiftUI, then render→diff→fix against the Figma export until it matches. Use when implementing or auditing UI against Figma.
HTTP networking layer reference — TargetType, HTTPClient, services, error handling.
Fetch CodeRabbit review comments from batch PRs and auto-fix the issues. Pushes fixes and re-requests review.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run SwiftLint and xcodebuild to verify the project compiles cleanly.
| name | batch-review |
| description | Morning review of batch PRs. Shows status, CodeRabbit feedback, and lint/build results for all recent batch PRs. |
Companion to /batch-tasks. Gives a quick overview of all PRs from the last batch run so you can review efficiently without opening each one individually.
/batch-review
Or with a filter:
/batch-review open # only open PRs (default)
/batch-review all # include closed/merged
List recent PRs authored by the bot:
gh pr list --author "@me" --state open --json number,title,url,headRefName,createdAt,isDraft,reviewDecision --limit 20
Filter to PRs that contain Co-Authored-By: Claude in the body:
gh pr view {number} --json body
For each batch PR, collect:
gh pr checks {number}
Fetch review comments from CodeRabbit:
gh api repos/{owner}/{repo}/pulls/{number}/reviews --jq '.[] | select(.user.login == "coderabbitai") | {state: .state, body: .body}'
Fetch inline review comments from CodeRabbit:
gh api repos/{owner}/{repo}/pulls/{number}/comments --jq '.[] | select(.user.login == "coderabbitai") | {path: .path, line: .line, body: .body}'
Extract the Summary section from the PR body.
Display a summary table:
## Batch Review Dashboard
| # | PR | Title | Checks | CodeRabbit | Action Needed |
|---|-----|-------|--------|------------|---------------|
| 1 | #N [link] | {title} | pass/fail | approved/changes_requested/pending | {suggestion} |
| 2 | ... | ... | ... | ... | ... |
After the table, show details for each PR that needs attention:
### PR #{N}: {title}
**Status**: {checks status}
**CodeRabbit**: {review state}
#### CodeRabbit Summary
{extracted summary from CodeRabbit's review body}
#### Issues to Fix ({count})
{for each inline comment:}
- `{file}:{line}` — {issue description}
#### Suggested Action
- {e.g. "Run `/batch-fix-reviews #N` to auto-fix CodeRabbit issues"}
- {e.g. "Ready to merge — no issues found"}
- {e.g. "Build failing — check CI logs"}
Use AskUserQuestion with relevant options based on the dashboard:
/batch-fix-reviews)"/batch-retry)"/batch-tasks