What problem does it solve? Code review and CI tests alone cannot prove a change actually works for real users. This Skill closes that gap by driving the running application through its real interface — CLI, server, GUI, or library boundary — and capturing concrete evidence of behavior. ## Core Features & Use Cases - Runtime Verification: Builds and launches the app, drives the changed code path through its real user-facing surface, and captures stdout, responses, or screenshots as evidence. - Adversarial Probing: Goes beyond the happy path by testing edge cases like empty flags, malformed requests, Ctrl-C interrupts, and repeated state operations. - Structured Verdict Reports: Produces PASS, FAIL, BLOCKED, or SKIP verdicts with step-by-step observations, findings, and replayable evidence. - Use Case: A reviewer asks you to confirm a PR fixing a CLI flag actually works. You run the binary with the new flag, probe it with an empty value, capture the output, and report a PASS with evidence. ## Quick Start Verify that the changes in this pull request actually work by running the app and observing its behavior.