verification-loop

Installation
Summary

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
SKILL.md

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
Related skills
Installs
3.8K
GitHub Stars
180.7K
First Seen
Feb 12, 2026