parallel-fix

Coordinate parallel RECON/EDIT workflows for multiple independent review findings.

12|1|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/RyderFreeman4Logos/cli-sub-agent --skill parallel-fix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: parallel-fix
Source: https://github.com/RyderFreeman4Logos/cli-sub-agent/tree/main/patterns/parallel-fix/skills/parallel-fix
Command: npx skills add https://github.com/RyderFreeman4Logos/cli-sub-agent --skill parallel-fix

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinate parallel RECON/EDIT workflows to handle 2+ independent findings from a review.

Core Features & Use Cases

  • Distributes independent findings across parallel read-only analyses.
  • Enforces mandatory SA-mode propagation to maintain security context.
  • Merges results and coordinates a final serial EDIT pass with conflict resolution and formatting checks.

Quick Start

Enable parallel-fix by routing multiple findings to parallel recon tasks when a review returns two or more independent findings.

Frequently Asked Questions about parallel-fix

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

FAQPage Schema
How do I parallelize fixes for multiple code review findings?

Parallelize fixes by routing independent findings into parallel read-only recon tasks, then merging results into a final serial edit pass. This reduces total fix time when a review produces several findings across different files.

What is the best way to handle multiple independent review findings across different files?

Handle multiple independent findings using bucket-based dispatch to distribute read-only analyses, followed by sequential merging. This enforces mandatory SA-mode propagation to maintain security context throughout the workflow.

Can I use parallel workflows to fix review findings without causing edit conflicts?

Yes, parallel workflows prevent edit conflicts by separating read-only analyses from a final serial edit pass. The serial edit pass includes built-in conflict resolution and formatting checks to ensure safe merging.

How does SA-mode propagation work during parallel code analysis?

SA-mode propagation maintains security context across all parallel read-only analyses dispatched during the fix workflow. It is mandatory to ensure security constraints are maintained when findings are processed independently.

When should I not use parallel workflows for code fixes?

Avoid parallel workflows when a code review produces fewer than two independent findings. The workflow is designed to coordinate parallel recon and edit tasks specifically for two or more independent findings across different files.