DevTeam Review Command
Description
**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 rev
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for michael-harris/devteam, shared by 20 entries
in this directory. It describes the repository, not this entry specifically.
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 |
Limit review to specific files/directories |
--focus |
Focus on: security, performance, architecture, correctness, all |
--pr |
Review a specific pull request |
--severity |
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:
- Detect languages and frameworks in the target files
- Select appropriate language-specific code reviewers
- Run database reviewers if schema changes are detected
- Aggregate findings across all reviewers
- 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
Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Development Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
Development src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11
Development Cavecrew Builder
>
Development Cavecrew Investigator
>
Development Cavecrew Reviewer
>
Development Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.