verification-loop
Comprehensive verification system running build, type, lint, test, and security checks across Claude Code sessions.
- Executes six sequential verification phases: build compilation, type checking, linting, test suite with coverage reporting, security scanning for secrets and debug statements, and git diff review
- Supports both JavaScript/TypeScript (npm/pnpm, tsc, ESLint) and Python (pyright, ruff) projects with language-specific commands
- Produces a structured verification report indicating pass/fail status for each phase, total test counts, coverage percentage, and a PR-readiness determination
- Designed for checkpoint verification after feature completion, refactoring, or before creating pull requests; can run continuously every 15 minutes during long sessions
Verification Loop Skill
A comprehensive verification system for Claude Code sessions.
When to Use
Invoke this skill:
- After completing a feature or significant code change
- Before creating a PR
- When you want to ensure quality gates pass
- After refactoring
Verification Phases
Phase 1: Build Verification
# Check if project builds
npm run build 2>&1 | tail -20
# OR
More from affaan-m/everything-claude-code
security-review
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.
7.9Kgolang-patterns
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications.
7.4Kcoding-standards
Baseline cross-project coding conventions for naming, readability, immutability, and code-quality review. Use detailed frontend or backend skills for framework-specific patterns.
6.7Kfrontend-patterns
Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.
6.6Kbackend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
6.6Kgolang-testing
Go testing patterns including table-driven tests, subtests, benchmarks, fuzzing, and test coverage. Follows TDD methodology with idiomatic Go practices.
6.1K