New to Claude Skills? Learn how to install them →

wshobson on GitHub

Multi-Reviewer Patterns

Free

Streamline multi-dimensional code reviews efficiently.

by wshobson38.7k stars on wshobson/agents
1 views
Updated Jul 18, 2026
Get this skill

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 source

1. Install with the skills CLI

npx skills add wshobson/agents/multi-reviewer-patterns --agent claude-code

2. 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 wshobson

Multi-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

DimensionFocusWhen to Include
SecurityVulnerabilities, auth, input validationAlways for code handling user input or auth
PerformanceQuery efficiency, memory, cachingWhen changing data access or hot paths
ArchitectureSOLID, coupling, patternsFor structural changes or new modules
TestingCoverage, quality, edge casesWhen adding new functionality
AccessibilityWCAG, ARIA, keyboard navFor UI/frontend changes

Recommended Combinations

ScenarioDimensions
API endpoint changesSecurity, Performance, Architecture
Frontend componentArchitecture, Testing, Accessibility
Database migrationPerformance, Architecture
Authentication changesSecurity, Testing
Full feature reviewSecurity, Performance, Architecture, Testing

Finding Deduplication

When multiple reviewers report issues at the same location:

Merge Rules

  1. Same file:line, same issue — Merge into one finding, credit all reviewers
  2. Same file:line, different issues — Keep as separate findings
  3. Same issue, different locations — Keep separate but cross-reference
  4. Conflicting severity — Use the higher severity rating
  5. 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

SeverityImpactLikelihoodExamples
CriticalData loss, security breach, complete failureCertain or very likelySQL injection, auth bypass, data corruption
HighSignificant functionality impact, degradationLikelyMemory leak, missing validation, broken flow
MediumPartial impact, workaround existsPossibleN+1 query, missing edge case, unclear error
LowMinimal impact, cosmeticUnlikelyStyle 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