docs(claude-md): document \validate:all\ + \test:coverage\ in Quick Start

The Quality block listed build / type-check / format but not the two
audit-adjacent commands added this session. \`validate:all\` is the
local mirror of CI's validate job (turbo recursion + pgSchema + crypto
registry) and is the right pre-push gate; \`test:coverage\` emits the
lcov + json-summary artifacts that CI uploads.

Both were already documented in their per-topic guidelines
(authentication.md, database.md, testing.md) — this just surfaces them
in the root Quick Start so contributors don't have to know which
guideline mentions which command.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-20 16:03:55 +02:00
parent 3179fa10cf
commit 9d69e4419d

View file

@ -83,8 +83,14 @@ Quality:
pnpm run build
pnpm run type-check
pnpm run format
pnpm run validate:all # turbo recursion + pgSchema + crypto registry — run before push
pnpm run test:coverage # emit v8 coverage under per-package coverage/
```
`validate:all` is the local mirror of the CI `validate` job — it runs in
seconds and fails fast on any of the three invariant checks. Use it as a
pre-push gate.
## Key Architecture Notes
These are the patterns that span the repo. Service-/app-specific details live in their own CLAUDE.md.