review-fix-loop

Automate remediation of code-analysis findings with parallelized fixes and verification.

3|1|Updated Mar 9, 2026
One-click install
npx skills add https://github.com/Jem-Open/jem-agent-skills --skill review-fix-loop-jem-open
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-fix-loop
Source: https://github.com/Jem-Open/jem-agent-skills/tree/main/skills/review-fix-loop
Command: npx skills add https://github.com/Jem-Open/jem-agent-skills --skill review-fix-loop-jem-open

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates the identification and remediation of code-analysis findings across a codebase, orchestrating a deterministic fix loop that progresses toward a clean state.

Core Features & Use Cases

  • Automated analysis orchestration: detects findings, selects appropriate tools, and coordinates parallel subagents to apply fixes.
  • Verification & validation: runs project lint and tests after fixes to ensure stability.
  • Use Case: ideal for large codebases with multiple analysis tools (CodeRabbit, DeepSource, ESLint, Ruff) where automated, safe, looped remediation saves time.

Quick Start

Immediately initiate an automated fix loop on your project by pointing the skill at your repository root.

Frequently Asked Questions about review-fix-loop

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

FAQPage Schema
How do I automate static analysis fixes across my codebase?

Automating static analysis fixes requires orchestrating a fix loop that detects findings, applies fixes via parallel subagents, and verifies results. This skill runs that loop until zero findings remain, preserving test stability.

What is an automated auto-fix loop for code analysis?

An auto-fix loop is an orchestration process that identifies static analysis findings, proposes remediations, and iteratively applies them. It coordinates parallel subagents to fix issues and validates stability by running project lint and tests.

Can I use this auto-fix loop with ESLint and Ruff in CI?

Yes, this auto-fix loop works in CI or local development with tools like ESLint, Ruff, CodeRabbit, and DeepSource. It orchestrates parallelized fixes across multiple analysis tools and verifies them against your project tests.

How do I run parallelized code remediation without breaking tests?

Parallelized code remediation without breaking tests is achieved by orchestrating subagents to apply fixes and running project lint and test suites for validation after each iteration. The loop preserves stability while progressing toward zero findings.

When do I need an automated fix loop for lint findings?

You need an automated fix loop for lint findings when managing large codebases with multiple static analysis tools. It saves time by coordinating deterministic, parallelized remediation and verification until the codebase reaches a clean state.