원클릭으로
verification-loop
A comprehensive verification system for Claude Code sessions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A comprehensive verification system for Claude Code sessions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
TDD workflow for Meerkat SDK — Jest with @swc/jest, Nx monorepo, SQL AST testing patterns.
SOC 직업 분류 기준
| name | verification-loop |
| description | A comprehensive verification system for Claude Code sessions. |
| origin | ECC |
A comprehensive verification system for Claude Code sessions.
Invoke this skill:
npx nx run-many --target=build --all --parallel 2>&1 | tail -20
If build fails, STOP and fix before continuing.
npx tsc --noEmit 2>&1 | head -30
Report all type errors. Fix critical ones before continuing.
npx nx lint meerkat-core 2>&1 | head -30
# Run tests for affected project(s)
npx nx test meerkat-core 2>&1 | tail -50
# Run all tests
npx nx run-many --target=test --all 2>&1 | tail -50
# Target: 80% minimum coverage
Report:
# Check for secrets
grep -rn "sk-" --include="*.ts" --include="*.js" . 2>/dev/null | head -10
grep -rn "api_key" --include="*.ts" --include="*.js" . 2>/dev/null | head -10
# Check for console.log
grep -rn "console.log" --include="*.ts" --include="*.tsx" packages/ 2>/dev/null | head -10
git diff --stat
git diff HEAD~1 --name-only
Review each changed file for:
. delimiters, empty arrays)After running all phases, produce a verification report:
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 issues)
Diff: [X files changed]
Overall: [READY/NOT READY] for PR
Issues to Fix:
1. ...
2. ...
For long sessions, run verification every 15 minutes or after major changes:
Set a mental checkpoint:
- After completing each function
- After finishing a component
- Before moving to next task
Run: /verify
Before ANY git push, run the full monorepo test suite:
npx nx run-many --target=test --all 2>&1 | tail -50
Rules:
This skill complements PostToolUse hooks but provides deeper verification. Hooks catch issues immediately; this skill provides comprehensive review.