Skip to content
Development
Command

/devteam-review

**Command:** `/devteam:review [target] [options]`

From plugin
michael-harris-devteam
1820 skills128 agents20 commands13 hooks
+1
Install
> /plugin marketplace add michael-harris/devteam
> /plugin install devteam@devteam-marketplace

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/devteam-review

Context preview

What this command does when you run it.

**Command:** `/devteam:review [target] [options]`

Command definition

devteam-review.md

DevTeam Review Command

**Command:** `/devteam:review [target] [options]`

Run a coordinated code review across multiple reviewers. Launches the Code Review Coordinator to orchestrate language-specific and domain-specific reviewers.

Usage

# Review current changes (staged + unstaged)
/devteam:review

# Review specific files
/devteam:review "src/api/auth.ts" "src/models/user.ts"

# Review specific scope
/devteam:review --scope "src/api/"

# Review with specific focus
/devteam:review --focus security
/devteam:review --focus performance
/devteam:review --focus architecture

# Review a PR
/devteam:review --pr 42

Options

| Option | Description | |--------|-------------| | `--scope <path>` | Limit review to specific files/directories | | `--focus <area>` | Focus on: security, performance, architecture, correctness, all | | `--pr <number>` | Review a specific pull request | | `--severity <level>` | Minimum severity to report: critical, warning, info | | `--eco` | Cost-optimized execution |

Your Process

Phase 0: Initialize Session

source scripts/state.sh
source scripts/events.sh

SESSION_ID=$(start_session "/devteam:review $*" "review")
log_session_started "/devteam:review $*" "review"

Phase 1: Launch Code Review Coordinator

Delegate to the `orchestration:code-review-coordinator` agent, which will:

1. Detect languages and frameworks in the target files 2. Select appropriate language-specific code reviewers 3. Run database reviewers if schema changes are detected 4. Aggregate findings across all reviewers 5. Produce a unified review report with severity ratings

const result = await Task({
    subagent_type: "orchestration:code-review-coordinator",
    prompt: `Code review request:

        Target: ${target || 'current changes'}
        Scope: ${scope || 'auto-detect'}
        Focus: ${focus || 'all'}

        Coordinate reviewers to check:
        1. Code correctness and logic errors
        2. Security vulnerabilities
        3. Performance issues
        4. Code style and best practices
        5. Test coverage gaps
        6. Documentation needs`
})

Phase 2: Report

Output a review report showing:

  • Summary of findings by severity
  • File-by-file review comments
  • Recommended changes
  • Overall code quality assessment

See Also

  • `/devteam:implement` - Implement review feedback
  • `/devteam:bug` - Fix bugs found during review
  • `/devteam:test` - Run tests to verify fixes
Read more
Ships withmichael-harris-devteam

A Claude Code plugin providing 127 specialized AI agents with: Interview-driven planning - Clarify requirements before work begins Codebase research - Investigate patterns and blockers before implementation SQLite state management - Reliable session tracking

Get the whole plugin

Other commands on michael-harris-devteam.