원클릭으로
review
Run parallel code reviews using specialized agents (security, performance, simplicity, nextjs-react). Produces a structured report.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run parallel code reviews using specialized agents (security, performance, simplicity, nextjs-react). Produces a structured report.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Cross-project audit and sync. Backs up, bootstraps, promotes, syncs, and verifies all downstream projects.
Structured pre-planning research. Explores codebase, asks clarifying questions, and produces a brainstorm output file for /plan-feature input.
Capture knowledge from development sessions. Debug patterns, architecture decisions, framework gotchas, and integration learnings compound over time.
Load project context and show current status. Use at the start of a session or when context is needed.
Initialize a new project from Agent Kit boilerplate. Use when creating a new downstream project.
Pre-Production Security & Quality Check with Strix AI. Use BEFORE deploying to production to catch vulnerabilities and issues.
| name | review |
| description | Run parallel code reviews using specialized agents (security, performance, simplicity, nextjs-react). Produces a structured report. |
| allowed-tools | Bash, Read, Glob, Grep, Task |
| argument-hint | ["full|security|performance|simplicity|nextjs|<path>"] |
Run specialized review agents in parallel against the codebase. Collect findings into a single structured report.
Parse the argument to determine what to review:
| Argument | Scope |
|---|---|
/review or /review full | Run ALL 4 reviewers on frontend/ and convex/ |
/review security | Run security-reviewer only |
/review performance | Run performance-reviewer only |
/review simplicity | Run simplicity-reviewer only |
/review nextjs | Run nextjs-react-reviewer only |
/review <path> | Run ALL 4 reviewers scoped to the given path |
Use the Task tool to launch specialized agents in parallel. Each agent corresponds to a file in .claude/agents/:
Agent Mapping:
| Review Type | Agent File | Focus |
|---|---|---|
| Security | .claude/agents/security-reviewer.md | OWASP, auth, XSS, CSRF, secrets |
| Performance | .claude/agents/performance-reviewer.md | Re-renders, bundle, N+1, O(n^2) |
| Simplicity | .claude/agents/simplicity-reviewer.md | YAGNI, dead code, over-abstraction |
| Next.js/React | .claude/agents/nextjs-react-reviewer.md | Server/Client, hooks, TypeScript, naming |
Launch Pattern:
For each selected reviewer, launch a Task with subagent_type: code-reviewer:
Task: "Run {type} review on {scope}"
Prompt: Read .claude/agents/{agent-file}.md for instructions.
Review {scope} and produce findings per the agent's output format.
Include exact file paths and line numbers.
CRITICAL: Launch ALL selected reviewers in a SINGLE message (parallel tool calls). Do NOT run them sequentially.
Wait for all agents to complete. Read each agent's output.
Create a unified report at:
.agents/reviews/YYYY-MM-DD-{topic}.md
Report Template:
# Code Review: {Topic}
**Date:** YYYY-MM-DD
**Branch:** `{current branch}`
**Scope:** {what was reviewed}
**Reviewers:** {which agents ran}
---
## Executive Summary
{2-3 sentence overview of findings}
| Category | P1 (Must Fix) | P2 (Should Fix) | P3 (Consider) |
|----------|--------------|-----------------|----------------|
| Security | N | N | N |
| Performance | N | N | N |
| Simplicity | N | N | N |
| Next.js/React | N | N | N |
| **Total** | **N** | **N** | **N** |
---
## P1 -- Must Fix
{Findings from all reviewers, merged and deduplicated}
## P2 -- Should Fix
{Findings from all reviewers, merged and deduplicated}
## P3 -- Consider
{Findings from all reviewers, merged and deduplicated}
---
## Positive Findings
{What the codebase does well}
---
## Action Plan
### Immediate (This Session)
- [ ] ...
### Next Sprint
- [ ] ...
### Backlog
- [ ] ...
After writing the report, show a compact summary to the user:
REVIEW COMPLETE
----------------------------------------------------------------------
Report: .agents/reviews/YYYY-MM-DD-{topic}.md
Findings: P1: N | P2: N | P3: N
Reviewers: security, performance, simplicity, nextjs-react
Scope: {scope}
Top Issues:
1. {P1 finding summary}
2. {P1 finding summary}
3. {P2 finding summary}
Fix now? (y/n)
----------------------------------------------------------------------
If the user confirms, start fixing P1 issues:
npx tsc --noEmit to verify/review
Runs all 4 agents on entire codebase.
/review security
Runs only the security-reviewer.
/review frontend/app/api/
Runs all 4 agents scoped to API routes.
/review before /pre-production for comprehensive quality check/review security after adding new API routes/review performance after large feature implementations.agents/reviews/ for historical tracking