Run parallel code review with multiple specialists (code-reviewer + security-tester)
Runs parallel code quality and security reviews with specialized agents, then synthesizes findings into a prioritized action plan.
/plugin marketplace add ashchupliak/dream-team/plugin install dream-team@dream-team-marketplacearchive/Launch code-reviewer and security-tester in parallel for comprehensive review.
Execute the following in parallel:
Prompt: "Review recent code changes for quality, patterns, and maintainability.
Run git diff to see changes. Focus on:
- Code quality and readability
- Pattern adherence
- Error handling
- Test coverage gaps
Provide structured review with severity levels."
Prompt: "Conduct security assessment of recent code changes.
Run git diff to see changes. Focus on:
- OWASP Top 10 vulnerabilities
- Input validation
- Authentication/authorization
- Sensitive data handling
Provide security assessment report."
After both agents complete, synthesize:
## Combined Review Results
### Code Quality
[Summary from code-reviewer]
- Critical: [count]
- High: [count]
- Medium: [count]
### Security
[Summary from security-tester]
- Critical: [count]
- High: [count]
- Medium: [count]
### Verdict
[APPROVED / NEEDS CHANGES / BLOCKED]
### Action Items (Priority Order)
1. [Most critical item]
2. [Second item]
...
/parallel-review # Review HEAD~1
/parallel-review HEAD~5 # Review last 5 commits
/parallel-review feature/x # Review specific branch