# Verification Loop

> Checkpoint-based verification for code quality assurance. Use for: running verification loops, saving checkpoints, evaluating implementations against acceptance criteria. Commands: /verify, /checkpoint.

- Skill: `wenjunduan/verification-loop` (Agent Skill)
- Install (CLI): `npx skillmds@latest add wenjunduan/verification-loop`
- Raw SKILL.md: https://api.skillmd.com/api/skills/wenjunduan/verification-loop/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: wenjunduan (https://skillmd.com/u/wenjunduan)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/wenjunduan/verification-loop

---


# Verification Loop Skill

Systematic verification through checkpoints and quality gates.

## Verification Types

| Type | Command | Purpose |
|:---|:---|:---|
| Checkpoint | /checkpoint "name" | Save state for recovery |
| Continuous | /verify --continuous | Ongoing checks |
| Final Gate | /verify --final | Pre-commit verification |

## Verification Criteria

### Code Quality
- [ ] TypeScript strict mode
- [ ] ESLint/Prettier clean
- [ ] No `any` types
- [ ] Error handling complete

### Testing
- [ ] Unit tests pass
- [ ] Coverage >= 80%
- [ ] Integration tests pass

### Security
- [ ] No hardcoded secrets
- [ ] Input validation present
- [ ] Dependencies secure

## Checkpoint Storage

```
.ai_state/checkpoints/
├── checkpoint-001-feature.yaml
└── checkpoint-latest.yaml
```

## Integration

Works with:
- `code-quality` skill for quality checks
- `cunzhi` skill for pause points
- Git for actual file versioning

