بنقرة واحدة
verify
Run comprehensive pre-PR verification loop. Checks build, types, lint, tests, security, and coverage.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run comprehensive pre-PR verification loop. Checks build, types, lint, tests, security, and coverage.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate changelog entries following Keep a Changelog format
Generate a well-structured pull request with summary and test plan
Cluster related instincts into skills, commands, or agents
Export instincts for sharing with teammates or backup
Import instincts from teammates or community collections
View learned instincts grouped by domain with confidence levels
| name | verify |
| description | Run comprehensive pre-PR verification loop. Checks build, types, lint, tests, security, and coverage. |
| user-invocable | true |
Run a comprehensive quality check before creating a pull request.
/verify # Full verification (all checks)
/verify quick # Skip E2E and security scan
/verify fix # Auto-fix lint and formatting issues
/verify pre-commit # Checks relevant for commits only
Execute in this exact order. Stop on critical failures.
npm run build || cargo build || go build ./... || python -m py_compile src/**/*.py
npx tsc --noEmit || mypy src/ || cargo check
npm run lint || ruff check . || golangci-lint run || cargo clippy -- -D warnings
npm test || pytest || go test ./... || cargo test
quick)npm run test:integration
quick)npm audit --audit-level=high || pip-audit || cargo audit
npm run test:coverage # Target: 80%+
# Find leftover debug statements
grep -rn "console.log\|debugger\|print(" --include="*.ts" --include="*.py" src/
VERIFICATION REPORT
===================
Build: [PASS/FAIL]
Types: [PASS/FAIL] (X errors)
Lint: [PASS/FAIL] (X warnings)
Tests: [PASS/FAIL] (X/Y passed, Z% coverage)
Security: [PASS/FAIL] (X vulnerabilities)
Debug: [PASS/FAIL] (X statements found)
Ready for PR: [YES/NO]
Issues to Fix:
1. ...
With /verify fix, auto-fix where possible:
npm run lint:fix or ruff check --fix .npx prettier --write . or black .npm audit fix (non-breaking only)