verification-loop
Comprehensive verification system covering build, types, lint, tests, security, and diff review before a PR.
npx skills add vibeeval/vibecosystem --skill verification-loop --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 ```bash # Check if project builds npm run build 2>&1 | tail -20 # OR pnpm build 2>&1 | tail -20 ``` If build fails, STOP and fix before continuing. ### Phase 2: Type Check ```bash # TypeScript projects npx tsc --noEmit 2>&1 | head -30 # Python projects pyright . 2>&1 | head -30 ``` Report all type errors. Fix critical ones before continuing. ### Phase 3: Lint Check ```bash # JavaScript/TypeScript npm run lint 2>&1 | head -30 # Python ruff check . 2>&1 | head -30 ``` ### Phase 4: Test Suite ```bash # Run tests with coverage npm run test -- --coverage 2>&1 | tail -50 # Check coverage threshold # Target: 80% minimum ``` Report: - Total tests: X - Passed: X - Failed: X - Coverage: X% ### Phase 5: Security Scan ```bash # 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
- When to Use
- Verification Phases
- Phase 1: Build Verification
- Phase 2: Type Check
- Phase 3: Lint Check
- Phase 4: Test Suite
- Phase 5: Security Scan
- Phase 6: Diff Review
- Output Format
- Continuous Mode
- Integration with Hooks
Check if project builds npm run build 2>&1 | tail -20 OR pnpm build 2>&1 | tail -20 TypeScript projects npx tsc --noEmit 2>&1 | head -30 Python projects pyright . 2>&1 | head -30 JavaScript/TypeScript npm run lint 2>&1 | head -30
What does the verification-loop skill do?
Comprehensive verification system covering build, types, lint, tests, security, and diff review before a PR.
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill verification-loop --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
