Add a single verify script to the root package.json that runs the four CI checks in series:
"verify": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test"
Aligns with the convention in nimblebrain/code (bun run verify) and means contributors don't have to remember the four-command incantation. CLAUDE.md's "Verification" section can collapse to pnpm verify + a note that it's the CI-equivalent gate.
Trivial.
Add a single
verifyscript to the rootpackage.jsonthat runs the four CI checks in series:Aligns with the convention in nimblebrain/code (
bun run verify) and means contributors don't have to remember the four-command incantation. CLAUDE.md's "Verification" section can collapse topnpm verify+ a note that it's the CI-equivalent gate.Trivial.