What problem does it solve? Bug fixes often get applied without proof they work, leading to false fixes, regressions, and endless back-and-forth. This Skill enforces a test-first discipline: no fix is implemented until an automated test reproduces the bug and fails for the right reason. ## Core Features & Use Cases - Mandatory Test-First Verification: Requires writing the most concise failing test that reproduces the bug before any implementation begins. - SDLC Integration: Loads the dev skill and follows its full lifecycle (requirements, planning, implementation, PR creation, review, CI) with modified bug-fix steps. - Minimal Fix Scope Contract: Carries a Scope Brief into implementation and review so a bug report authorizes only that fix, not surrounding refactors. - Use Case: A user reports a crash when submitting an empty form. The Skill writes a failing test reproducing the crash, verifies it fails correctly, then implements the minimal fix and confirms all tests pass. ## Quick Start Invoke the fix skill to reproduce this reported bug with a failing test and then implement the minimal fix.