Use when completing tasks, code reviews, or deployments to verify work with evidence. Collects test results, build outputs, coverage metrics, and exit codes to prove work is complete.
View on GitHubyonatangross/skillforge-claude-plugin
orchestkit-complete
January 23, 2026
Select agents to install to:
npx add-skill https://github.com/yonatangross/skillforge-claude-plugin/blob/main/./skills/evidence-verification/SKILL.md -a claude-code --skill evidence-verificationInstallation paths:
.claude/skills/evidence-verification/# Evidence Verification ## Overview ### Auto-Activate Triggers - Completing code implementation - Finishing code review - Marking tasks complete in Squad mode - Before agent handoff - Production deployment verification ### Manual Activation - When user requests "verify this works" - Before creating pull requests - During quality assurance reviews - When troubleshooting failures --- # Evidence Verification ## Core Concepts ### 1. Evidence Types **Test Evidence** - Exit code (must be 0 for success) - Test suite results (passed/failed/skipped) - Coverage percentage (if available) - Test duration **Build Evidence** - Build exit code (0 = success) - Compilation errors/warnings - Build artifacts created - Build duration **Deployment Evidence** - Deployment status (success/failed) - Environment deployed to - Health check results - Rollback capability verified **Code Quality Evidence** - Linter results (errors/warnings) - Type checker results - Security scan results - Accessibility audit results ### 2. Evidence Collection Protocol ```markdown ## Evidence Collection Steps 1. **Identify Verification Points** - What needs to be proven? - What could go wrong? - What does "complete" mean? 2. **Execute Verification** - Run tests - Run build - Run linters - Check deployments 3. **Capture Results** - Record exit codes - Save output snippets - Note timestamps - Document environment 4. **Store Evidence** - Add to shared context - Reference in task completion - Link to artifacts ``` ### 3. Verification Standards **Minimum Evidence Requirements:** - ✅ At least ONE verification type executed - ✅ Exit code captured (0 = pass, non-zero = fail) - ✅ Timestamp recorded - ✅ Evidence stored in context **Production-Grade Requirements:** - ✅ Tests run with exit code 0 - ✅ Coverage >70% (or project standard) - ✅ Build succeeds with exit code 0 - ✅ No critical linter errors - ✅ Security scan passes --- # Evidence Verification ## Evid