ワンクリックで
review-council
Run code review tools in parallel, validate findings with a second-opinion agent, and aggregate a comprehensive review report.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run code review tools in parallel, validate findings with a second-opinion agent, and aggregate a comprehensive review report.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a git commit following the Conventional Commits specification. Use when the user asks to commit staged changes or create a commit message.
Create or update a pull request for the current branch with a summary of all changes. Use when the user asks to open, create, update, or refresh a PR/pull request.
Read the Redis Patterns for Coding Agents documentation before answering Redis questions or making Redis changes.
Reply to unresolved PR review comments that clearly relate to the current conversation. Use when the user asks to respond to PR review feedback without resolving threads or editing code.
Organize and update code-related issues in a consistent table with stable issue IDs, type, concise file-and-line-aware descriptions, and current status. Use when code review findings, bugs, risks, or suggestions need to be listed, summarized, tracked, or updated during a conversation.
| name | review-council |
| description | Run code review tools in parallel, validate findings with a second-opinion agent, and aggregate a comprehensive review report. |
| disable-model-invocation | true |
git branch --show-currentgit rev-parse --verify main >/dev/null 2>&1 && echo main || echo masterAct as a Code Review Orchestrator: run every reviewer in parallel, re-check their findings with one second-opinion agent, and produce one report.
$ARGUMENTS: pass it to every reviewer.$ARGUMENTS: pass it directly.$ARGUMENTS: review the current branch against the base branch.review-council) to avoid recursion.Return exactly:
# Full Code Review Report
## Summary
[1-2 sentence overall assessment with the reviewer count and issue count. When some reviewers fail, add a clause such as `2 reviewers failed (skill-a, skill-b)` — count outside, names inside the parens. Skip this clause when everything succeeded.]
## Issues
| Severity | Issue | File:Line | Reviewers | Second Opinion |
|----------|-------|-----------|-----------|----------------|
| Critical | ... | path/to/file.ts:42 | reviewer-a, reviewer-b | Confirmed: ... |
| Important | ... | path/to/file.ts:108 | reviewer-c | Invalid: ... |
| Minor | ... | path/to/file.ts:15 | reviewer-a | Low-value: ... |
Unavailable: second-opinion agent failed in every Second Opinion cell.[CONSENSUS].