
Multi-Reviewer Patterns
FreeStreamline multi-dimensional code reviews efficiently.
Free · Opens the source repo
What Multi-Reviewer Patterns does
The Multi-Reviewer Patterns skill is designed to facilitate the coordination of parallel code reviews across various quality dimensions. It addresses the complexities involved in organizing reviews by providing structured guidelines for deduplicating findings, calibrating severity ratings, and producing consolidated reports. This skill is particularly beneficial for teams that need to manage multiple reviewers and ensure consistent quality assessments across their codebase.
When using this skill, developers can effectively allocate review dimensions based on the specific focus areas of their code changes. The skill outlines various dimensions such as Security, Performance, Architecture, Testing, and Accessibility, along with recommendations on when to include each dimension in the review process. By following these guidelines, teams can ensure that all critical aspects of their code are evaluated, leading to more comprehensive and actionable feedback.
The skill also includes a clear process for finding deduplication, which is crucial when multiple reviewers report issues at the same location. By establishing merge rules and a systematic deduplication process, the skill helps teams avoid redundant findings and ensures that all issues are addressed appropriately. Furthermore, the severity calibration framework provides criteria for assessing the impact and likelihood of issues, allowing teams to prioritize their remediation efforts effectively.
Finally, the skill offers a template for generating consolidated review reports, which summarize the findings and provide a clear overview of the review outcomes. This report can serve as a valuable reference for future development and quality assurance activities, making it easier for teams to track improvements over time.
When to use it
Use this skill when organizing a multi-dimensional code review process involving several reviewers to ensure comprehensive coverage and consistent findings.
When not to use it
This skill may not be suitable for small projects or single-reviewer scenarios where a simpler review process suffices.
What you can build with it
API Endpoint Changes
When modifying API endpoints, utilize the Security, Performance, and Architecture dimensions to ensure comprehensive review.
Frontend Component Review
For frontend components, include Architecture, Testing, and Accessibility dimensions to cover all critical aspects.
Database Migration Review
During database migrations, focus on Performance and Architecture dimensions to address potential issues effectively.
How to install Multi-Reviewer Patterns
View source1. Install with the skills CLI
npx skills add wshobson/agents/multi-reviewer-patterns --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by wshobsonMulti-Reviewer Patterns
Patterns for coordinating parallel code reviews across multiple quality dimensions, deduplicating findings, calibrating severity, and producing consolidated reports.
When to Use This Skill
- Organizing a multi-dimensional code review
- Deciding which review dimensions to assign
- Deduplicating findings from multiple reviewers
- Calibrating severity ratings consistently
- Producing a consolidated review report
Review Dimension Allocation
Available Dimensions
| Dimension | Focus | When to Include |
|---|---|---|
| Security | Vulnerabilities, auth, input validation | Always for code handling user input or auth |
| Performance | Query efficiency, memory, caching | When changing data access or hot paths |
| Architecture | SOLID, coupling, patterns | For structural changes or new modules |
| Testing | Coverage, quality, edge cases | When adding new functionality |
| Accessibility | WCAG, ARIA, keyboard nav | For UI/frontend changes |
Recommended Combinations
| Scenario | Dimensions |
|---|---|
| API endpoint changes | Security, Performance, Architecture |
| Frontend component | Architecture, Testing, Accessibility |
| Database migration | Performance, Architecture |
| Authentication changes | Security, Testing |
| Full feature review | Security, Performance, Architecture, Testing |
Finding Deduplication
When multiple reviewers report issues at the same location:
Merge Rules
- Same file:line, same issue — Merge into one finding, credit all reviewers
- Same file:line, different issues — Keep as separate findings
- Same issue, different locations — Keep separate but cross-reference
- Conflicting severity — Use the higher severity rating
- Conflicting recommendations — Include both with reviewer attribution
Deduplication Process
For each finding in all reviewer reports:
1. Check if another finding references the same file:line
2. If yes, check if they describe the same issue
3. If same issue: merge, keeping the more detailed description
4. If different issue: keep both, tag as "co-located"
5. Use highest severity among merged findings
Severity Calibration
Severity Criteria
| Severity | Impact | Likelihood | Examples |
|---|---|---|---|
| Critical | Data loss, security breach, complete failure | Certain or very likely | SQL injection, auth bypass, data corruption |
| High | Significant functionality impact, degradation | Likely | Memory leak, missing validation, broken flow |
| Medium | Partial impact, workaround exists | Possible | N+1 query, missing edge case, unclear error |
| Low | Minimal impact, cosmetic | Unlikely | Style issue, minor optimization, naming |
Calibration Rules
- Security vulnerabilities exploitable by external users: always Critical or High
- Performance issues in hot paths: at least Medium
- Missing tests for critical paths: at least Medium
- Accessibility violations for core functionality: at least Medium
- Code style issues with no functional impact: Low
Consolidated Report Template
## Code Review Report
**Target**: {files/PR/directory}
**Reviewers**: {dimension-1}, {dimension-2}, {dimension-3}
**Date**: {date}
**Files Reviewed**: {count}
### Critical Findings ({count})
#### [CR-001] {Title}
**Location**: `{file}:{line}`
**Dimension**: {Security/Performance/etc.}
**Description**: {what was found}
**Impact**: {what could happen}
**Fix**: {recommended remediation}
### High Findings ({count})
...
### Medium Findings ({count})
...
### Low Findings ({count})
...
### Summary
| Dimension | Critical | High | Medium | Low | Total |
| ------------ | -------- | ----- | ------ | ----- | ------ |
| Security | 1 | 2 | 3 | 0 | 6 |
| Performance | 0 | 1 | 4 | 2 | 7 |
| Architecture | 0 | 0 | 2 | 3 | 5 |
| **Total** | **1** | **3** | **9** | **5** | **18** |
### Recommendation
{Overall assessment and prioritized action items}
Frequently asked questions about Multi-Reviewer Patterns
Similar skills
Quality Playbook Generator
Run comprehensive quality audits on any codebase.
PR Draft Summary
Automate PR summary generation for openai-agents-python.
Final Release Review
Streamline your release candidate audits with ease.
Unit Test Vue Pinia
Efficiently write and review unit tests for Vue 3 applications.
Slang Shader Expert
Optimize and integrate Slang shaders with ease.
Telemetry Standards
Ensure consistent event tracking in Supabase Studio.
