What problem does it solve? Non-code artifacts like specs, docs, manifests, and published packages often have no test suite, so agents assert "done" without evidence or re-run identical checks on identical bytes. This Skill provides disciplined verification workflows for those artifacts, including canonical checkers, ad-hoc verification scripts, and evidence tracking. ## Core Features & Use Cases - Canonical gate enforcement: Runs the workflow-defined checker (e.g. spec_holes.py for task specs) instead of inventing parallel checks, and interprets its exit codes and hole inventory correctly. - Install-protocol review: Reviews manual fresh-install verification protocols against a false-pass checklist covering silent degradation, sha-pinned asset fallbacks, stdout/stderr traps, cache provenance, and MCP stdio framing. - Merged-PR verification in installed builds: Verifies whether a packaged build contains a merged PR via binary probing and git tree comparison, avoiding the invalid squash-ancestry check. - Use Case: After merging a fix into a published dotnet global tool, verify the installed 1.0.9 build actually contains PR #55 by comparing git rev-parse <hash>^{tree} values rather than trusting version-hash ancestry. ## Quick Start Verify that the installed build of my packaged CLI tool actually contains the changes from the merged pull request, and report which check you used.