Quality Gates
MiniClaw treats quality gates as part of the architecture. They protect runtime behavior, docs, website summaries, bilingual parity, changelog hygiene, secrets, and release safety.
flowchart LR Change[Code / Docs Change] --> Commit[quality:commit] Commit --> Docs[quality:docs] Docs --> Drift[Docs Drift] Docs --> I18n[Docs i18n] Docs --> Website[Website Docs] Commit --> Changelog[Changelog Drift] Commit --> Static[Lint + Typecheck] Commit --> Tests[Vitest] Push[quality:push] --> Build[Build] Push --> Coverage[Coverage Ratchet] Push --> Cron[Cron E2E] Push --> Secrets[Secrets + G0] Push --> Deps[Dependency Scan]
Drift Controls
quality:docs:driftchecks implementation-to-docs invariants.quality:docs-i18nchecks bilingual doc pairing, metadata, heading shape, language split, and source-hash parity.quality:website-docskeeps website summaries tied to repo docs without forcing internal implementation updates into public copy.quality:changelogblocks release-visible changes that do not updateCHANGELOG.md.quality:coveragechecks ratcheted file thresholds after coverage runs; stock report thresholds tracksrc/stock/reportsownership, not provider compatibility facades.quality:commitis the staged gate for normal local commits.quality:pushexpands into build, coverage, cron E2E, full-tree safety, secrets, and dependency checks.
Website Contract
flowchart TD Source[Repo Source Docs] --> Page[Website Page] Page --> PublicImpact[source_docs] Page --> TraceOnly[trace_docs] PublicImpact --> Gate[quality:website-docs] TraceOnly --> Gate Gate --> Artifact[GitHub Pages Artifact] Artifact --> Pages[GitHub Pages Deploy]
The Pages workflow builds and validates the site every time. Source changes that alter public summaries should update website pages; trace-only changes are reported for review without blocking the site.
Source Docs
This website page is a curated summary. The implementation source of truth stays in the repo docs.