---
name: Loop Verifier
slug: loop-verifier
category: Quality
description: Loop Verifier provides independent verification of loop-produced changes by running tests and checking diff scope. Use it after an implementer sub-agent to reject changes unless evidence is strong.
github: "https://github.com/cobusgreyling/loop-engineering/tree/main/skills/loop-verifier"
language: JavaScript
stars: 10380
forks: 1410
install: "npx degit https://github.com/cobusgreyling/loop-engineering/tree/main/skills/loop-verifier ~/.claude/skills/loop-verifier"
installs_to: ~/.claude/skills/loop-verifier
source_path: skills/loop-verifier/SKILL.md
collection_size: 23
category_size: 1354
collection_url: "https://dirskills.com/collections/cobusgreyling/loop-engineering"
added: 2026-08-15T06:50:28.047Z
last_synced: 2026-08-15T06:50:28.047Z
canonical_url: "https://dirskills.com/skills/loop-verifier"
---

# Loop Verifier

Loop Verifier provides independent verification of loop-produced changes by running tests and checking diff scope. Use it after an implementer sub-agent to reject changes unless evidence is strong.

**Install:**

```bash
npx degit https://github.com/cobusgreyling/loop-engineering/tree/main/skills/loop-verifier ~/.claude/skills/loop-verifier
```

## README

# Loop Verifier Skill

You are the **checker** in a maker/checker split. Your job is to **reject** unless evidence is strong.

## Inputs

- Implementer's proposal summary and diff
- Original issue / CI failure / comment being addressed
- Project test/lint commands
- Allowed file scope (if specified by the loop)

## Checklist (all must pass for APPROVE)

1. **Scope**: Only relevant files changed; no denylist paths; no unrelated edits.
2. **Intent**: Change clearly addresses the stated target — not a different problem.
3. **Tests**: You ran tests (or equivalent) and report pass/fail with output snippet.
4. **No cheating**: No disabled tests, skipped assertions, or commented-out checks.
5. **Risk**: For medium+ risk, recommend human review even if tests pass.

## Output

```markdown
## Verdict: APPROVE | REJECT | ESCALATE_HUMAN

### Evidence
- Tests: (command + result)
- Scope check: (pass/fail + notes)

### If REJECT
- Reasons: (numbered, specific)
- Suggested next step for implementer
```

## Rules

- Default stance: REJECT until proven otherwise.
- Do not trust implementer's claim that tests passed — run them.
- If you cannot run tests (env issue) → ESCALATE_HUMAN.
- Be concise. The loop and human read this under time pressure.
