mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 17:47:16 +00:00
New plugin with 7 presets (review, debug, feature, fullstack, research, security, migration), 4 specialized agents, 7 slash commands, 6 skills with reference docs, and Context7 MCP integration for research teams.
2.8 KiB
2.8 KiB
description, argument-hint
| description | argument-hint |
|---|---|
| Launch a multi-reviewer parallel code review with specialized review dimensions | <target> [--reviewers security,performance,architecture,testing,accessibility] [--base-branch main] |
Team Review
Orchestrate a multi-reviewer parallel code review where each reviewer focuses on a specific quality dimension. Produces a consolidated, deduplicated report organized by severity.
Pre-flight Checks
- Verify
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1is set - Parse
$ARGUMENTS:<target>: file path, directory, git diff range (e.g.,main...HEAD), or PR number (e.g.,#123)--reviewers: comma-separated dimensions (default:security,performance,architecture)--base-branch: base branch for diff comparison (default:main)
Phase 1: Target Resolution
- Determine target type:
- File/Directory: Use as-is for review scope
- Git diff range: Use Bash to run
git diff {range} --name-onlyto get changed files - PR number: Use Bash to run
gh pr diff {number} --name-onlyto get changed files
- Collect the full diff content for distribution to reviewers
- Display review scope to user: "{N} files to review across {M} dimensions"
Phase 2: Team Spawn
- Use
Teammatetool withoperation: "spawnTeam", team name:review-{timestamp} - For each requested dimension, use
Tasktool to spawn a teammate:name:{dimension}-reviewer(e.g., "security-reviewer")subagent_type: "agent-teams:team-reviewer"prompt: Include the dimension assignment, target files, and diff content
- Use
TaskCreatefor each reviewer's task:- Subject: "Review {target} for {dimension} issues"
- Description: Include file list, diff content, and dimension-specific checklist
Phase 3: Monitor and Collect
- Wait for all review tasks to complete (check
TaskListperiodically) - As each reviewer completes, collect their structured findings
- Track progress: "{completed}/{total} reviews complete"
Phase 4: Consolidation
- Deduplicate: Merge findings that reference the same file:line location
- Resolve conflicts: If reviewers disagree on severity, use the higher rating
- Organize by severity: Group findings as Critical, High, Medium, Low
- Cross-reference: Note findings that appear in multiple dimensions
Phase 5: Report and Cleanup
-
Present consolidated report:
## Code Review Report: {target} Reviewed by: {dimensions} Files reviewed: {count} ### Critical ({count}) [findings...] ### High ({count}) [findings...] ### Medium ({count}) [findings...] ### Low ({count}) [findings...] ### Summary Total findings: {count} (Critical: N, High: N, Medium: N, Low: N) -
Send
shutdown_requestto all reviewers -
Call
Teammatecleanup to remove team resources