What problem does it solve? Uncommitted code changes often ship with broken builds, failing tests, or security gaps that only surface later. This Skill runs a standalone, read-only verification pass over your working-tree changes and tells you exactly what is wrong before you commit. ## Core Features & Use Cases - Scoped Change Verification: Gathers only git-modified files via git diff, runs the build and relevant tests, and checks the diff for broken imports, removed symbols, and type errors. - Adversarial Review Pass: Attacks the diff for edge cases, error paths, contract violations, race conditions, and dead wiring, then classifies findings on a P0–P3 severity ladder with file:line evidence. - Use Case: After editing an API route and its tests, run the verify pass to confirm tests pass and catch a missing auth decorator flagged as P1 before committing. ## Quick Start Ask the assistant to verify your uncommitted changes by saying: run orc-verify on my modified files and show me the summary.