npx claudepluginhub fegome90-cmd/multi-reviewMulti-agent code review orchestration with smart agent selection. Detects repository context, suggests appropriate review agents, and runs parallel code reviews using feature-dev, pr-review-toolkit, and superpowers.
Multi-agent code review orchestration with smart agent selection for Claude Code.
multi-review is a standalone plugin that orchestrates code review agents from multiple plugins:
See DEPENDENCIES.md for complete dependency and licensing information.
# Install from local marketplace
/plugin marketplace add ~/.claude/plugins/multi-review
/plugin install multi-review@local
# Interactive mode (prompts for preset)
/multi-review
# Framework-specific review
/multi-review --agents framework
# Custom agent selection
/multi-review --agents custom
Skip the preset selection and run immediately:
# Quick check - 2 agents (~30s)
/mr-quick
# Thorough review - 4 agents (~2min)
/mr-thorough
# Comprehensive review - 7 agents (~5min)
/mr-comprehensive
| Direct Command | Equivalent To |
|---|---|
/mr-quick | /multi-review --agents quick |
/mr-thorough | /multi-review --agents thorough |
/mr-comprehensive | /multi-review --agents comprehensive |
# Multi-agent planning & execution
/mr-plan
# Plugin diagnostics
/mr-doctor
| Preset | Agents | Use Case |
|---|---|---|
| quick | 2 | Fast check before commit |
| thorough | 4 | Balanced review |
| comprehensive | 7 | Complete review before PR |
| framework | 1-2 | Framework-specific compliance |
All presets use open-source plugins! See DEPENDENCIES.md for details.
The plugin automatically detects:
Suggestions based on context:
| Context | Suggestion |
|---|---|
| < 50 lines | quick preset |
| Has tests | Add test analyzer |
| Has types | Add type analyzer |
| > 500 lines | comprehensive preset |
The plugin includes automated hooks (disabled by default):
Runs quick review after file writes.
# Enable in .claude/settings.local.json
{
"hooks": {
"PostToolUse": [{
"matcher": "Write|Edit",
"hooks": [{
"type": "command",
"command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/post-write.sh",
"enabled": true
}]
}]
}
}
Runs review before git commit.
# Enable in .claude/settings.local.json
{
"hooks": {
"PreCommit": [{
"hooks": [{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/scripts/pre_commit_check.py",
"enabled": true
}]
}]
}
}
Runs comprehensive review at session end.
# Enable in .claude/settings.local.json
{
"hooks": {
"Stop": [{
"hooks": [{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/scripts/session_review.py",
"enabled": true
}]
}]
}
}
All scripts can be run independently:
# Context detection
python3 ~/.claude/plugins/multi-review/scripts/context_detector.py --suggest
# Post-Write review
python3 ~/.claude/plugins/multi-review/scripts/auto_review.py --file path/to/file.py
# Pre-Commit check
python3 ~/.claude/plugins/multi-review/scripts/pre_commit_check.py --strict
# Session review
python3 ~/.claude/plugins/multi-review/scripts/session_review.py
Review reports are saved to ~/.claude/plugins/multi-review/reports/:
review_YYYYMMDD-HHMMSS.json - Post-Write reportscommit_YYYYMMDD-HHMMSS.json - Pre-Commit reportssession_YYYYMMDD-HHMMSS.json - Session-End reportsRequired plugins:
feature-dev - for feature-dev:code-reviewerpr-review-toolkit - for all PR review agentsOptional:
superpowers - for superpowers:code-review-checklistClaude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations