一键导入
verification-loop
Comprehensive verification running all quality gates
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comprehensive verification running all quality gates
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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