# Verify

> Run Forge's canonical verification chain (format:check + lint + typecheck + build + test). Use before claiming any task complete or opening a PR.

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

---


Run the checks in order; stop at the first failure.

```bash
npm run format:check
npm run lint
npm run typecheck
npm run build
npm test
```

All 249 tests across 43 files must remain green. If you added logic to
`src/core`, `src/agents`, or `src/tools`, the count should increase.

On success, print one line:

```
verify: format ✓ lint ✓ typecheck ✓ build ✓ test ✓ (N tests)
```

On failure, print which step failed and the first error line. Do not
claim success unless every step passed.

