This skill should be used when the user asks to "run multiple agents", "parallel review", "comprehensive analysis", "full review", "multi-agent workflow", or needs to coordinate multiple specialized...
This skill provides patterns for orchestrating multiple specialized agents to work in parallel on complex tasks. Use this for comprehensive code reviews, research-and-implement workflows, and multi-project coordination.
Launch multiple review agents simultaneously, then consolidate findings.
Use for: Comprehensive code review, pre-PR checks, security audits
Workflow:
Example:
Launch in parallel:
- security-reviewer: "Review authentication changes for vulnerabilities"
- performance-optimizer: "Analyze database query performance"
- code-reviewer: "Review code quality and conventions"
- silent-failure-hunter: "Check error handling completeness"
Then synthesize findings into prioritized action items.
Explore codebase, design architecture, implement, then review.
Use for: New feature development, major refactoring
Workflow:
Phase 1 - Exploration (parallel):
Phase 2 - Design (parallel):
Phase 3 - Implementation:
Phase 4 - Review (parallel):
Work across multiple projects or repositories simultaneously.
Use for: Monorepo changes, cross-project refactoring
Workflow:
Automated quality gates throughout development.
Use for: Maintaining code quality during implementation
Workflow:
| Concern | Agent | When to Use |
|---|---|---|
| Security | security-reviewer | Auth code, user input, credentials |
| Performance | performance-optimizer | Queries, loops, data processing |
| Testing | test-engineer | New features, bug fixes |
| Documentation | documentation-writer | APIs, complex logic |
| Quality | code-reviewer (plugin) | All code changes |
| Architecture | code-architect (plugin) | Design decisions |
| Exploration | code-explorer (plugin) | Understanding code |
| Error handling | silent-failure-hunter (plugin) | Critical paths |
Comprehensive Review: "Launch security-reviewer, performance-optimizer, code-reviewer, and silent-failure-hunter in parallel to review unstaged changes. Synthesize findings prioritized by severity."
Research & Implement: "First launch 3 code-explorer agents to analyze [feature area], then launch 2 code-architect agents to design approaches, present options for my approval, then implement and review."
Quick Security Check: "Launch security-reviewer focused on the authentication module changes."
Full Pre-PR Review: "Use orchestrator to coordinate a comprehensive review before I create the PR."