fix-review-code

Automatically correct code review issues using Evan Workflow fix strategies.

2|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/EvanPluchart/kyomu --skill fix-review-code
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-review-code
Source: https://github.com/EvanPluchart/kyomu/tree/main/.claude/skills/fix-review-code
Command: npx skills add https://github.com/EvanPluchart/kyomu --skill fix-review-code

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill reduces the time spent manually triaging and fixing issues reported by /code-review by applying Evan Workflow rules and conventions with clear safety guardrails.

Core Features & Use Cases

  • Auto-fix from a review report: Corrects issues from an existing review report file or from a freshly generated internal /code-review report.
  • Severity-ordered remediation: Processes problems from CRITIQUE to BASSE to prioritize the highest-impact fixes first.
  • Mode-based safety controls: Supports interactive confirmation by default, non-ambiguous auto-fixes with --auto, and a non-modifying preview with --dry-run.
  • Strategy-driven edits: Chooses a deterministic fix approach by mapping each issue category to references/fix-strategies.md (security, type safety, pattern, naming, style, imports).

Quick Start

Run fix-review-code on your current branch by providing the same commit and branch parameters you used with /code-review, for example: execute /fix-review-code --commit abc123 --branch feature/xxx --auto.

Frequently Asked Questions about fix-review-code

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

FAQPage Schema
How do I automatically fix code review issues in my repository?

To automatically fix code review issues, you can run the fix-review-code command on your branch with the target commit. It reads an existing review report or generates one to correct naming, style, and security violations with safety guardrails.

Can I preview code refactoring changes before applying them to my git commits?

Yes, you can preview code refactoring changes by running the command with the --dry-run flag. This non-modifying mode shows the intended fixes for type safety and pattern violations without altering your files or creating scoped commits.

What is the best way to prioritize security and type safety fixes from a lint report?

The best way to prioritize security and type safety fixes is using severity-ordered remediation. The tool processes issues from CRITIQUE to BASSE, ensuring the highest-impact violations are corrected first before generating a structured fix summary.

Does the automated fixing tool require confirmation before modifying code?

Yes, the automated fixing tool requires interactive confirmation by default to ensure safety. You can bypass this for non-ambiguous fixes by using the --auto flag, which applies strategy-driven edits directly.

How do I handle ambiguous code violations when refactoring imports and patterns?

To handle ambiguous code violations during refactoring, the tool enforces strict ambiguity handling modes and maps each issue to deterministic strategies. This ensures imports and pattern edits are resolved safely without guessing.

What limitations exist when auto-fixing code review reports across different branches?

A key limitation is that auto-fixing requires matching the exact commit and branch parameters used in the original code review. Additionally, ambiguous issues cannot be auto-fixed and require interactive confirmation to proceed safely.