← ClaudeAtlas

fixlisted

Apply targeted fixes for specific findings from code reviews, security reviews, QA reports, or audit scans.
backspace-shmackspace/claude-devkit · ★ 15 · AI & Automation · score 81
Install: claude install-skill backspace-shmackspace/claude-devkit
# /fix Workflow ## Role This skill is a **pipeline coordinator**. It orchestrates a targeted fix workflow: parse a finding from a review artifact, scope the fix, dispatch a coder agent, run focused verification, and commit with traceability back to the source finding. It does NOT write code directly — it delegates implementation to a coder agent and verification to focused subagent tasks. **Finding-driven, not plan-driven:** The finding IS the specification. No plan file required or generated. **Supported artifacts:** Works with findings from both `/ship` artifacts (`.code-review.md`, `.secure-review.md`, `.qa-report.md`) and `/audit` artifacts (`audit-[timestamp].security.md`, `audit-[timestamp].performance.md`). **Dry-run mode:** Supports `--dry-run` flag. Runs Steps 0-3 but skips Step 4 (commit). Changes remain in the working directory for manual review. ## Inputs ``` /fix <artifact-path> [finding-id] [--dry-run] ``` Examples: ``` /fix plans/archive/maven-build-support/maven-build-support.secure-review.md H-01 /fix plans/archive/maven-build-support/maven-build-support.code-review.md M-1 /fix plans/audit-20260523T143000.security.md C-01 /fix plans/archive/audit/audit-20260523/audit-20260523.security.md H-02 /fix "command injection in find -exec in pipeline build step" # free-text fallback /fix plans/archive/maven-build-support/maven-build-support.secure-review.md H-01 --dry-run ``` - `artifact-path`: Path to a review artifact (`.code-review.md`, `.secure-review.md