Audit Fix Generator
Turns an audit finding ID into a copy-paste-ready AI fix prompt with verification and rollback.
Test report
- Verdict
- Tested · Works
- Score
- Tested
- Jul 14, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · 87244af
Fed it one high-severity finding (session tokens generated with random.randint instead of secrets) and it produced the full copy-paste prompt - blast-radius grep step, before/after diff, three mandatory test checkboxes, an explicit verification-command block, and a git-revert rollback line - versus a plain paragraph-plus-snippet answer without the skill.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 9/10
- Docs & honesty 4/5
What Audit Fix Generator does
Generates a complete, self-contained AI fix prompt for a single audit finding - context, constraints, concrete fix steps, a mandatory verification-command section, and a rollback plan - meant to be pasted into a fresh AI session rather than the one that produced the audit. Triggers on '/audit-fix F-X.Y' or 'give me the fix prompt for finding N'. It is explicitly read-only: it produces the prompt, it does not apply the fix itself.
How to install Audit Fix Generator
git clone https://github.com/wolverin0/claude-skills
cd claude-skills
mkdir -p ~/.claude/skills
cp -r skills/audit/audit-fix-generator ~/.claude/skills/audit-fix-generator
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Audit Fix Generator
-
/audit-fix-generatorTurns an audit finding ID into a copy-paste-ready AI fix prompt with verification and rollback.
It also activates on plain-language prompts like these:
-
Give me the fix prompt for finding F-2.1 from our last audit. -
/audit-fix F-H1.1, generate the copy-paste fix prompt for it. -
Generate an AI fix prompt for this finding so I can hand it off.
Frequently asked questions
- Is the Audit Fix Generator skill free?
- Yes. The skill itself is free from wolverin0/claude-skills. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Audit Fix Generator work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 14, 2026. Verdict: Tested · Works. Fed it one high-severity finding (session tokens generated with random.randint instead of secrets) and it produced the full copy-paste prompt - blast-radius grep step, before/after diff, three mandatory test checkboxes, an explicit verification-command block, and a git-revert rollback line - versus a plain paragraph-plus-snippet answer without the skill.
- What is the Audit Fix Generator SkillProof Score?
- 9.2/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 9/10, docs & honesty 4/5.
- How do I install Audit Fix Generator?
- 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 Generator 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.