Agent skill · Security

verification-loop

Comprehensive verification system covering build, types, lint, tests, security, and diff review before a PR.

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill verification-loop --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/verification-loop/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the 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 ```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

What's inside
Steps it walks through
  1. When to Use
  2. Verification Phases
  3. Phase 1: Build Verification
  4. Phase 2: Type Check
  5. Phase 3: Lint Check
  6. Phase 4: Test Suite
  7. Phase 5: Security Scan
  8. Phase 6: Diff Review
  9. Output Format
  10. Continuous Mode
  11. Integration with Hooks
Commands it runs
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
More from vibecosystem
All skills →
About this skill
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.

Keep going