From e62fc20774929640629a1d4095d0d45a6cbc3a82 Mon Sep 17 00:00:00 2001 From: Mao Nakamoto <41178744+maonakamoto@users.noreply.github.com> Date: Fri, 4 Sep 2026 15:47:53 +0200 Subject: [PATCH] docs: sync docs with actual stack AGENTS.md described `verify` as lint + typecheck + test; package.json's verify script actually runs format:check && lint && typecheck && test. Updated both mentions to include format:check. All other doc claims (pnpm commands, Drizzle schema/entities, Vitest, layout, CI behavior) verified accurate against package.json, src/, drizzle/, and workflows. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01WqKqMnHQHSmkGFfc5t7Rxn --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index e66ada3..a5ebe21 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -19,12 +19,12 @@ pnpm run db:generate # drizzle-kit generate — new migration from schem pnpm run db:migrate # drizzle-kit migrate (needs a live Postgres) pnpm run dev # local dev server pnpm run build # next build (production compile; no live DB needed) -pnpm run verify # SSOT gate: lint + typecheck + test +pnpm run verify # SSOT gate: format:check + lint + typecheck + test ``` ## Verify (definition of done) -`pnpm run verify` runs `lint && typecheck && test` — the single source of truth for +`pnpm run verify` runs `format:check && lint && typecheck && test` — the single source of truth for "green". CI calls it verbatim; run it locally before declaring any change done. `next build` also runs in CI after verify to catch build-only breakage.