One-click install
npx skills add https://github.com/jeremyary/agent-scaffold --skill consolidate-reviews
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: consolidate-reviews
Source: https://github.com/jeremyary/agent-scaffold/tree/main/.claude/skills/consolidate-reviews
Command: npx skills add https://github.com/jeremyary/agent-scaffold --skill consolidate-reviews

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill tackles the inefficiency of sifting through multiple, often redundant, code review documents by consolidating them into a single, actionable triage table.

Core Features & Use Cases

  • De-duplication: Merges similar findings from different reviewers, reducing noise.
  • Disagreement Highlighting: Clearly flags where reviewers have conflicting opinions on severity or resolution.
  • Structured Triage: Presents findings in a clear, categorized table (Critical, Warning, Suggestions, Positive) for efficient decision-making.
  • Use Case: After several engineers review a new feature's design, use this Skill to combine their feedback into one document, highlighting any critical issues or disagreements that need immediate attention before implementation.

Quick Start

Use the consolidate reviews skill to consolidate all review files matching the pattern plans/reviews/requirements-review-*.md.

Frequently Asked Questions about consolidate-reviews

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I consolidate multiple code review files into a single triage table?

Consolidating multiple code review files involves reading review documents matching a glob pattern, merging overlapping findings through de-duplication, highlighting reviewer disagreements, and outputting a structured triage table categorized by severity for efficient artifact review.

What is de-duplication in code review reporting?

De-duplication in code review reporting merges similar findings from different reviewers into a single entry, reducing noise and redundancy. You need it when multiple engineers review the same artifact and their feedback documents contain overlapping issues that complicate triage.

Can I highlight disagreements between reviewers in a consolidated report?

Yes, you can surface disagreements in a consolidated report by merging review files and explicitly flagging where reviewers have conflicting opinions on severity or resolution. This structured triage output clearly categorizes these conflicts for immediate attention.

How do I use glob patterns to select review files for consolidation?

Use glob patterns like 'plans/reviews/requirements-review-*.md' to select input review files for consolidation. The skill reads all matching files, determines the artifact name from the filenames, and merges them into a single de-duplicated triage table.

Does code review consolidation work without external dependencies?

Yes, code review consolidation works without external dependencies. The skill uses internal scripts and references to read review files, determine artifact names from filenames, and output a structured document for user triage without requiring additional packages.

What's the best way to triage redundant code review feedback from multiple engineers?

The best way to triage redundant feedback is to consolidate the review files into a single de-duplicated table. This approach merges overlapping findings, categorizes them by severity (Critical, Warning, Suggestions, Positive), and surfaces disagreements for efficient decision-making.