Audit Fix
Turns audit findings into atomic commits, one test run per fix
Test report
- Verdict
- Works with setup
- Score
- Tested
- Aug 7, 2026
- Environment
- Claude Code 2.x (agent harness)
Both install commands in the README fail: 'claude plugin marketplace add SienkLogic/plan-build-run' dies because the repo ships no .claude-plugin/marketplace.json at root, and 'npx @sienklogic/plan-build-run' returns 'could not determine executable to run' because the published package has no bin and the bin/install.js its package.json points at is absent from the repo. Writing that marketplace manifest by hand made the plugin install cleanly. On a repo with six planted audit findings the pipeline beat the no-skill pass concretely: three atomic commits and a green suite, with the config change that broke a test caught and rolled back, versus one bundled commit and a red suite when I just fixed everything the report listed. The protocol as literally written fixed nothing on the first attempt, because the suite was already red and its per-fix test gate has no pre-flight baseline check. The audit half of the pipeline is unverified: it only reads Claude Code session logs from a Plan-Build-Run project.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 4/5
- Triggers reliably 4/5
- Output vs. baseline 6/10
- Docs & honesty 2/5
What Audit Fix does
Part of the Plan-Build-Run plugin. Reads an audit report, filters findings by severity, splits them into auto-fixable and manual-only, then dispatches one executor subagent per finding that fixes, runs the test suite and commits, halting the pipeline on the first test failure. Triggers on requests to fix audit findings and commit them.
How to install Audit Fix
git clone https://github.com/SienkLogic/plan-build-run.git
mkdir -p ~/.claude/skills ~/.claude/agents
cp -r plan-build-run/plugins/pbr/skills/audit-fix ~/.claude/skills/audit-fix
cp -r plan-build-run/plugins/pbr/skills/shared ~/.claude/skills/shared
cp plan-build-run/plugins/pbr/agents/*.md ~/.claude/agents/
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Audit Fix
-
/audit-fixTurns audit findings into atomic commits, one test run per fix
It also activates on plain-language prompts like these:
-
Fix these audit findings and commit each one atomically please -
Go through this audit report and auto-fix whatever's safe to fix -
Apply the audit findings one by one, running tests after each fix
Frequently asked questions
- Is the Audit Fix skill free?
- Yes. The skill itself is free from SienkLogic/plan-build-run. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Audit Fix work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Aug 7, 2026. Verdict: Works with setup. Both install commands in the README fail: 'claude plugin marketplace add SienkLogic/plan-build-run' dies because the repo ships no .claude-plugin/marketplace.json at root, and 'npx @sienklogic/plan-build-run' returns 'could not determine executable to run' because the published package has no bin and the bin/install.js its package.json points at is absent from the repo. Writing that marketplace manifest by hand made the plugin install cleanly. On a repo with six planted audit findings the pipeline beat the no-skill pass concretely: three atomic commits and a green suite, with the config change that broke a test caught and rolled back, versus one bundled commit and a red suite when I just fixed everything the report listed. The protocol as literally written fixed nothing on the first attempt, because the suite was already red and its per-fix test gate has no pre-flight baseline check. The audit half of the pipeline is unverified: it only reads Claude Code session logs from a Plan-Build-Run project.
- What is the Audit Fix SkillProof Score?
- 6.4/10 — installs cleanly 4/5, triggers reliably 4/5, output vs. baseline 6/10, docs & honesty 2/5.
- How do I install Audit Fix?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Audit Fix with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.