fix-bug

Installation
SKILL.md

Bug Fix

Fix the bug described by the user (a plain description, an issue ID, or a failing test name) using test-driven debugging: reproduce it, find the root cause with evidence, apply the smallest fix, verify, commit.

Anti-Hallucination Guidelines

A fix that "should work" but was never run against a failing test is a guess, not a fix:

  1. Reproduce first: don't fix what you haven't seen fail.
  2. Test-driven: write or locate a failing test before implementing the fix; confirm it actually fails.
  3. Verify root cause: locate the bug with grep/read evidence (file path, line number), not intuition.
  4. Verify the fix: run the full test suite; all tests must pass before calling the bug fixed.
  5. No invented fixes: only implement solutions that address the demonstrated root cause.
  6. Reference real code: never make claims about code you haven't read.

Workflow Mode: Inline by Default

Installs
19
GitHub Stars
8
First Seen
Mar 26, 2026
fix-bug — mgiovani/cc-arsenal