By fegome90-cmd
Multi-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.
Interactive multi-agent code review with smart agent selection
Comprehensive 7-agent code review - full review before PRs
Diagnose multi-review plugin health
Invoke the **mr-plan-evaluator** agent to analyze implementation plans.
Quick 2-agent code review - fast check before commits
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
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-checklistnpx claudepluginhub fegome90-cmd/multi-review --plugin multi-reviewMulti-agent code review system with 7 specialized auditors. Detects 41 cataloged antipatterns, validates findings against JSON schema, and generates prioritized reports.
Context tracking bundle system for Claude Code. Track operations via hooks, prune sessions, rehydrate context across windows. JSONL append-only with hybrid storage (global scripts + local bundles).
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification