Show multi-agent workflow status, compliance metrics, and pending reviews
/plugin marketplace add pagerguild/guilde-lite/plugin install multi-agent-review@guilde-plugins[status|report|check|clear|help]Multi-agent workflow status and compliance tracking.
/multi-agent or /multi-agent statusShow current multi-agent compliance status:
Check for pending reviews:
bash scripts/multi-agent-metrics.sh check
Show quick compliance stats:
bash scripts/multi-agent-metrics.sh json
Report summary to user including:
/multi-agent reportShow full compliance report with details:
bash scripts/multi-agent-metrics.sh report
This shows:
/multi-agent checkCheck if there are pending reviews that must be done before committing:
bash scripts/multi-agent-metrics.sh check
IMPORTANT: If pending reviews exist, you MUST invoke a code-reviewer agent before committing.
/multi-agent clearMark pending reviews as complete (only after actually running code review):
bash scripts/multi-agent-metrics.sh track code_change_reviewed
/multi-agent helpDisplay this help and link to documentation:
.claude/rules/multi-agent-workflow.md - Full workflow rulesscripts/multi-agent-metrics.sh - Metrics tracking script| Task Type | Required Agents | Minimum |
|---|---|---|
| Code changes | code-reviewer, test-automator | 2 |
| Research questions | Explore (multiple paths) | 2-3 |
| Bug investigation | debugger, error-detective | 2 |
| New features | architect-review, code-reviewer | 2 |
Launch parallel agents:
1. Task with subagent_type: "pr-review-toolkit:code-reviewer"
2. Task with subagent_type: "unit-testing:test-automator"
Launch parallel Explore agents:
1. Task with subagent_type: "Explore", thoroughness: "medium"
2. Task with subagent_type: "Explore", different search angle
Launch parallel debugging agents:
1. Task with subagent_type: "debugging-toolkit:debugger"
2. Task with subagent_type: "error-debugging:error-detective"
Events tracked automatically:
| Event | Trigger |
|---|---|
code_change_no_review | Write/Edit tool used |
code_change_reviewed | code-reviewer agent invoked |
agent_invoked | Any Task tool call |
View compliance with /multi-agent report.
Before committing:
/multi-agent check to see pending reviewsThe /commit command should also check for pending reviews.