원클릭으로
team-review
Parallel multi-agent code review from multiple angles. Trigger: team review, parallel review, multi-reviewer, thorough review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Parallel multi-agent code review from multiple angles. Trigger: team review, parallel review, multi-reviewer, thorough review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a new feature using TDD and tracer bullets. Trigger: new feature, add feature, implement feature, build feature
Break features into tracer bullet stories and tasks. Trigger: decompose, break down, split feature, tracer bullet, stories, tasks, decompose feature
Deploy to staging or production with safety checks. Trigger: deploy, ship, release, push to staging, push to production
Build or update .context.md for a module. Trigger: explore module, explore, understand module, what does this module do, context file, update context
Fix a bug with root cause analysis and regression testing. Trigger: fix bug, broken, regression, error, crash, not working, failing
Run linters, formatters, and static analysis. Trigger: lint, format, standards, style check, code quality, lint setup
| name | team-review |
| description | Parallel multi-agent code review from multiple angles. Trigger: team review, parallel review, multi-reviewer, thorough review |
Spawn parallel review subagents that examine the codebase simultaneously from different angles. Each reviewer runs in its own context via the Task tool.
This is a read-only operation. No reviewer edits files. The lead synthesizes all findings.
Use /review when... | Use /team-review when... |
|---|---|
| Reviewing a small change (< 5 files) | Reviewing a large change (10+ files) |
| Quick feedback is needed | Thorough, multi-dimensional analysis is needed |
| Token budget is a concern | Quality and depth matter more than cost |
| Changes are in a single module | Changes span multiple modules/layers |
/team-review → all uncommitted changes/team-review [file, dir, or commit range] → specific scope/team-review --staged → staged changes onlyRead all changed files. Categorize the nature of changes to determine which reviewers to spawn.
Read the agent definition files from .claude/agents/ and spawn parallel Task tool calls. All reviewers are read-only — they produce reports, never edit files.
Task(subagent_type="security-code-auditor",
prompt="<content of .claude/agents/security-reviewer.md>\n\n
Review these files for security issues: {changed_files}\n
Focus: OWASP top 10, input validation, secrets, auth\n
Return a structured report with severity ratings.")
Task(subagent_type="senior-code-reviewer",
prompt="<content of .claude/agents/code-reviewer.md>\n\n
Review these files: {changed_files}\n
Focus: correctness, readability, DRY/KISS/SOLID, anti-patterns\n
Return a structured report with severity ratings.")
Task(subagent_type="senior-code-reviewer",
prompt="<content of .claude/agents/test-reviewer.md>\n\n
Review these test files: {changed_test_files}\n
And their corresponding source files: {changed_source_files}\n
Focus: TDD compliance, coverage gaps, test quality, test smells\n
Return a structured report with severity ratings.")
Task(subagent_type="senior-code-reviewer",
prompt="<content of .claude/agents/architecture-reviewer.md>\n\n
Review these files: {changed_files}\n
Focus: module boundaries, coupling, SOLID at system level\n
Return a structured report with severity ratings.")
Task(subagent_type="senior-code-reviewer",
prompt="<content of .claude/agents/performance-reviewer.md>\n\n...")
Task(subagent_type="senior-code-reviewer",
prompt="<content of .claude/agents/doc-reviewer.md>\n\n...")
All Task calls return their reports. Collect all outputs.
Merge all reports into a single review:
## Team Code Review
**Scope:** [what was reviewed]
**Reviewers:** [N] subagents
**Overall Assessment:** [Excellent / Good / Needs Work / Significant Issues]
**Quality Score:** [N]/100
### Critical Issues (must fix before commit)
[Merged from all reviewers, deduplicated, attributed to source reviewer]
- **[reviewer]** [file:line] — [issue]
### Major Issues (should fix before PR)
[Same format]
### Minor Issues (polish)
[Same format]
### Reviewer Summaries
| Reviewer | Assessment | Critical | Major | Minor |
|----------|-----------|----------|-------|-------|
| Code | [status] | [N] | [N] | [N] |
| Security | [status] | [N] | [N] | [N] |
| Test | [status] | [N] | [N] | [N] |
| Architecture | [status] | [N] | [N] | [N] |
### Recommended Actions (priority order)
1. [Most critical fix]
2. [Next priority]
This skill enforces complete separation of review and implementation: