ワンクリックで
review
Thorough code review of current branch against main
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Thorough code review of current branch against main
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build the project (auto-detects build system)
Find and remove dead code, unused imports, and technical debt
Create git commits in logical groups for all current changes
Create a git commit with conventional commit message
Pick up unfinished work from where the last session left off
Debug and fix failing tests or errors
| name | review |
| description | Thorough code review of current branch against main |
Perform a thorough code review of the current branch against the base branch using parallel agents for speed.
Launch these in parallel:
Agent 1 — Branch & Diff Info:
CURRENT=$(git branch --show-current)
if git remote -v | grep -q "appwrite"; then BASE="1.8.x"; else BASE="main"; fi
echo "Reviewing $CURRENT against $BASE"
git diff $BASE...HEAD --name-only
git diff $BASE...HEAD --stat
Agent 2 — Full Diff:
git diff $BASE...HEAD
Agent 3 — Commit History:
git log $BASE..HEAD --oneline
Launch these reviewer agents in parallel, each reviewing the same diff but focused on a different dimension:
Agent A — Security & Data Integrity:
Agent B — Logic & Correctness:
Agent C — Performance & Testing:
Agent D — Project Standards:
Combine findings from all agents into a single structured report:
## Review Summary
- Files reviewed: X
- Issues found: Y (X critical, Y warnings, Z suggestions)
## Critical Issues (Must Fix)
1. [file:line] Description of issue
- Why it's critical
- Suggested fix
## Warnings (Should Fix)
1. [file:line] Description
- Impact
- Suggested fix
## Suggestions (Consider)
1. [file:line] Description
- Rationale
## Positive Notes
- Things done well
Deduplicate findings across agents. Prioritize by severity.