with one click
verification-loop
Comprehensive verification running all quality gates
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Comprehensive verification running all quality gates
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Pull request lifecycle domain knowledge — branch strategy detection, PR size classification, confidence-scored review, git-aware context, PR analytics, dependency management, and split/merge/describe operations.
Production readiness audit domains, weighted scoring criteria, and check specifications for the /preflight workflow.
Application scaffolding orchestrator. Creates full-stack applications from requirements, selects tech stack, coordinates agents.
Production deployment workflows, rollback strategies, and CI/CD best practices.
Internationalization and localization patterns for multi-language applications
Mobile UI/UX patterns for iOS and Android. Touch-first, platform-respectful design with React Native/Expo focus.
| name | verification-loop |
| description | Comprehensive verification running all quality gates |
| triggers | ["manual","pre-commit"] |
Purpose: Continuous quality assurance through automated verification
The verification loop runs all quality gates to ensure code meets professional standards before committing or deploying.
npm run build
Pass Criteria: Exit code 0, no TypeScript errors
npm run lint
Pass Criteria: No errors (warnings acceptable)
npx tsc --noEmit
Pass Criteria: Zero type errors
npm run test
Pass Criteria: All tests pass
npm run test:coverage
Pass Criteria: ≥80% coverage
npm audit --audit-level=high
Pass Criteria: No high/critical vulnerabilities
{
"verification": {
"coverageThreshold": 80,
"allowWarnings": true,
"securityLevel": "high"
}
}
/verify command