review-fix

Automates iterative code review and fix loops until zero issues remain.

5|Updated Jun 22, 2026
One-click install
npx skills add https://github.com/A158Coke/WotbTools --skill review-fix-a158coke
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-fix
Source: https://github.com/A158Coke/WotbTools/tree/main/.agents/skills/review-fix
Command: npx skills add https://github.com/A158Coke/WotbTools --skill review-fix-a158coke

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After code changes are made, subtle defects like leftover references, hardcoded values, unused imports, inconsistent naming, null-safety gaps, and concurrency risks often slip through. This Skill closes that gap with an automated review-fix loop that runs before every commit, requiring no manual intervention. ## Core Features & Use Cases - Six-Point Checklist Review: Systematically checks grep leftovers, hardcoded values (colors, URLs, i18n strings, magic numbers), unused imports, naming inconsistencies, null/empty boundary handling, and concurrency safety across Java, JavaScript, and Vue files. - Verifier Sub-Agent Loop: Spawns an independent verifier agent to audit changes, fixes reported issues, and re-reviews in a loop until zero new problems are found. - Targeted Regression Validation: Runs only the affected module or feature tests (e.g., Maven or Vitest targeted runs) instead of full repository test suites, escalating to full validation only for cross-module or build infrastructure changes. - Use Case: After refactoring a Vue component and its Java backend endpoint, trigger this Skill before committing; it catches a leftover old variable name, a hardcoded color, and a missing null fallback, fixes them, re-verifies, and outputs a visual review report. ## Quick Start Review and fix all issues in the code changes I just completed, looping until the verifier reports zero problems.

Frequently Asked Questions about review-fix

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

FAQPage Schema
How do I automatically review code changes before committing?

Trigger the review-fix workflow after completing code changes. It self-checks against a six-item checklist, spawns a verifier sub-agent for independent audit, fixes reported issues, and loops until zero problems remain, then outputs a visual review report.

What code quality issues does automated review catch?

The checklist covers six categories: leftover references from renamed or deleted code, hardcoded colors/URLs/strings/magic numbers, unused imports in Java and Vue, naming inconsistencies across files, null and empty boundary handling, and concurrency safety issues like unsynchronized shared state.

Does the review loop run full test suites every time?

No. It runs targeted regression tests only for affected modules or features, such as specific Maven or Vitest test files. Full repository validation is reserved for cross-module or build infrastructure changes and is otherwise left to PR CI.

Can the review-fix loop run without user intervention?

Yes. Once the plan is approved and code changes are complete, the review-fix cycle runs fully autonomously: review, fix, re-verify, and repeat. User approval is only needed again if issues remain unresolved at the end.

When should I not use an automated review-fix loop?

Avoid it before the implementation plan is approved or while changes are still in progress, since it assumes completed code. It also does not replace exhaustive repository-wide validation, which belongs to PR CI pipelines.