# Verify

> Run the full quality gate — formatting, linting, type checking, and tests. Use after implementing changes to confirm everything passes.

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

---


Run the complete quality gate for this project. Execute each step sequentially and report results:

1. `uv run ruff format --check .` — verify formatting
2. `uv run ruff check .` — lint
3. `uv run mypy` — strict type checking
4. `uv run pytest` — run all tests

If any step fails, stop and report the failure with details. If all pass, confirm the change is ready.

