一键导入
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.