with one click
verification-loop
A comprehensive verification system for Claude Code sessions.
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
A comprehensive verification system for Claude Code sessions.
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
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications.
Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.
Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.
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.
Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.
Playwright E2E testing patterns, Page Object Model, configuration, CI/CD integration, artifact management, and flaky test strategies.
| name | verification-loop |
| description | A comprehensive verification system for Claude Code sessions. |
A comprehensive verification system for Claude Code sessions.
Invoke this skill:
# Node.js / TypeScript
npm run build 2>&1 | tail -20
# OR
pnpm build 2>&1 | tail -20
# Go
go build ./... 2>&1 | head -20
If build fails, STOP and fix before continuing.
# TypeScript projects
npx tsc --noEmit 2>&1 | head -30
# Python projects
pyright . 2>&1 | head -30
# Go (vet catches type-level issues)
go vet ./... 2>&1 | head -30
Report all type errors. Fix critical ones before continuing.
# JavaScript/TypeScript — lint
npm run lint 2>&1 | head -30
# JavaScript/TypeScript — Prettier format check
# For monorepo workspace projects:
npx -w <workspace-name> prettier --check . 2>&1 | head -30
# For standard projects:
npx prettier --check . 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
# Go
golangci-lint run ./... 2>&1 | head -30
If Prettier check fails, auto-fix and re-verify:
npx -w <workspace-name> prettier --write .
npx -w <workspace-name> prettier --check . 2>&1 | head -10
# Node.js — run tests with coverage
npm run test -- --coverage 2>&1 | tail -50
# Go — run tests with coverage
go test -cover ./... 2>&1 | tail -30
# Target: 80% minimum coverage
Report:
Run the security-scan skill for a comprehensive check of secrets, misconfigurations, and injection risks in Claude configuration files. For application code:
# Quick check: console.log left in source
grep -rn "console.log" --include="*.ts" --include="*.tsx" src/ 2>/dev/null | head -10
# Go: debug prints
grep -rn "fmt.Print" --include="*.go" . 2>/dev/null | head -10
For deeper secret scanning, use the security-scan skill (AgentShield-based).
# Show what changed
git diff --stat
git diff HEAD~1 --name-only
Review each changed file for:
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
This skill complements PostToolUse hooks but provides deeper verification. Hooks catch issues immediately; this skill provides comprehensive review.