review-fix

Load code-review artifacts, filter findings by severity, and apply fixes in dependency-safe batches.

1|Updated Mar 4, 2026
One-click install
npx skills add https://github.com/yandy-r/claude-plugins --skill review-fix-yandy-r
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-fix
Source: https://github.com/yandy-r/claude-plugins/tree/main/.cursor-plugin/skills/review-fix
Command: npx skills add https://github.com/yandy-r/claude-plugins --skill review-fix-yandy-r

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Plan and apply fixes for code-review findings by loading the artifact, filtering by severity, and orchestrating safe, dependency-free batches for fixes.

Core Features & Use Cases

  • Load and parse review artifacts from local worktrees or PR branches.
  • Filter findings by severity and safety of suggested fixes.
  • Batch findings by file and severity with deterministic ordering and parallelizable execution.
  • Dispatch fixers as standalone agents or as an agent-team, with per-batch shutdown and auditable task graphs.
  • Update the review artifact in place with Fixed/Failed statuses and generate a fix report.
  • Support dry-run, worktree-aware execution, and cross-bundle automation.

Quick Start

Provide a review artifact path or PR number to /review-fix and it will plan and execute fixes across batches.

Frequently Asked Questions about review-fix

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

FAQPage Schema
How do I automate code-review fixes across multiple files safely?

Automating code-review fixes is done by loading a review artifact, filtering findings by severity, and batching fixes in a dependency-safe order. The process dispatches fixer agents in parallel, validates changes, and updates the artifact in place with Fixed or Failed statuses.

Can I dry-run code-review fixes before applying them to my worktree?

Yes, dry-run options are supported for code-review fixes. A dry run plans the dependency-safe batches and simulates the fixer agent dispatch without applying changes, allowing you to review the proposed task graph and per-findings fix log before execution.

How does worktree isolation work when applying batched code-review fixes?

Worktree isolation for code-review fixes ensures batched changes are applied in a separate, clean environment. When enabled, the system isolates the fixer agents and validates changes within the worktree boundaries before writing the final fix report and updating the review artifact.

What is the best way to filter code-review findings by severity for parallel execution?

Filtering code-review findings by severity is handled by parsing the review artifact and grouping results into deterministic, parallelizable batches. This ensures fixer agents can execute safely in parallel without file or dependency conflicts during the fix process.

Do I need a specific review artifact format to automate PR code-review fixes?

You need a review artifact path or PR number to automate code-review fixes. The system loads and parses the artifact from local worktrees or PR branches to extract findings, filter them by severity, and orchestrate the automated fix batches.

Why do batched code-review fixes fail during parallel agent dispatch?

Batched code-review fixes may fail if dependency-safe ordering is violated or validation detects issues after applying changes. The system logs these failures per-findings in the generated fix report and updates the review artifact in place with Failed statuses for auditing.