cy-fix-reviews

Applies fixes from review round issue files in severity order within batch scope.

Updated May 15, 2026
One-click install
npx skills add https://github.com/JBonfim/skill-developer --skill cy-fix-reviews-jbonfim
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cy-fix-reviews
Source: https://github.com/JBonfim/skill-developer/tree/main/.agents/skills/cy-fix-reviews
Command: npx skills add https://github.com/JBonfim/skill-developer --skill cy-fix-reviews-jbonfim

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fixes provider-agnostic PR review failures in a strict, repeatable order by using the existing review round files as the source of truth, reducing back-and-forth and preventing incomplete remediation.

Core Features & Use Cases

  • Sequenced review remediation: Executes fixes in critical-to-low severity order based on the triage and status in the scoped issue files.
  • Batch-scoped, non-invasive changes: Constrains code edits to the files declared in the batch scope and avoids unrelated refactors.
  • Verification-first completion: Runs the repository’s real verification workflow via cy-final-verify before claiming success or creating commits, including handling failures by fixing root causes.

Quick Start

Run cy-fix-reviews to remediate the existing review round issues using the already-prepared scoped batch files under .compozy/tasks/<name>/reviews-NNN/.

Frequently Asked Questions about cy-fix-reviews

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

FAQPage Schema
How do I fix pull request review issues in batch without missing critical failures?

Batch PR review remediation resolves issues in critical-to-low severity order by reading triage and status from existing review round files. This ensures critical problems are addressed first and prevents incomplete remediation across the batch scope.

What is provider-agnostic code review remediation and how does it work?

Provider-agnostic review remediation applies code fixes using existing review round issue files as the source of truth, avoiding provider-specific mutations. It relies on round and issue-file frontmatter context to execute changes without fetching or exporting data from specific review providers.

How do I ensure code fixes stay within the batch scope during PR review remediation?

Batch-scoped remediation constrains code edits strictly to files declared in the batch scope, avoiding unrelated refactors. The process reads the declared file boundaries from the existing review round issue files and limits all modifications to that scope.

Does PR review remediation require running verification before committing fixes?

Yes, verification-first completion runs the repository's real verification workflow before claiming success or creating commits. If verification fails, the process addresses root causes rather than skipping checks, ensuring only validated code changes are committed.

Can I use this approach for batched code review issues across different review platforms?

Yes, provider-agnostic remediation works across platforms by using existing review round issue files as the source of truth rather than fetching from specific providers. It forbids provider-specific mutations and applies fixes based on file frontmatter context.

Why does my batched PR review fix workflow leave issues unresolved?

Incomplete remediation often occurs when fixes aren't applied in severity order or when batch scope boundaries aren't enforced. Using existing review round files as the source of truth with strict severity sequencing ensures all declared issues are addressed systematically.