What problem does it solve? When a fix is already committed — during PR review, after-the-fact test additions, or subagent output validation — a passing test alone cannot prove it actually covers the fixed behavior. This Skill enforces a witnessed RED run so the test is not indistinguishable from a tautology. ## Core Features & Use Cases - Pre-fix reconstruction: Locates the pre-fix version of a production file via git history (git log, git show) or by reverse-applying the fix diff. - Witnessed RED run: Temporarily restores the old code in a worktree, runs the new test expecting failure on the intended assertion, then restores HEAD and confirms with git status. - Evidence recording: Captures the pre-fix commit, expected-fail assertion, and post-fix pass count for the PR or review. - Use Case: While reviewing a fix PR, check out the pre-fix commit's version of the changed file, run the new test to watch it fail on the intended assertion, restore the fix, and document the RED/GREEN evidence in the review. ## Quick Start Use the red-proof skill to verify this committed fix by running its new test against the pre-fix code and recording the failure evidence.