Governance & Lineage¶
Trust in a clinical-decision-support system is not a slogan — it's enforced at the boundaries of every capability. Governance in the HCLS AI Factory is mechanical: the registry is the source of truth, and every governed run passes through the same gates.

Every capability call passes the gate and leaves an auditable, 21 CFR Part 11-style record.
The gates every governed run passes¶
- Input-validation gate — parameters are checked against each capability's typed contract (allowed values, numeric bounds, defaults) before anything runs. Bad input is rejected or clamped-and-logged, not silently mishandled.
- Output-honesty gate — a result is never presented as more confident than its weakest input or leg. Honesty is computed, not copied: a signal inherits the lowest maturity of what produced it.
- The registry honesty rules — a
livecapability can never be mock-served;verifiedcannot sit on anything that isn't actually running. Enforced in code (see the Capability Maturity Matrix).
Reproducible lineage (21 CFR Part 11-minded)¶
Governed runs carry a lineage manifest — inputs, the capability chain that produced each artifact, serving details, a composed honesty tier, and a deterministic lineage hash — so a result can be traced back to exactly what made it. The design intent is audit-grade reproducibility, not a black box.
The neutral, reproducible repository¶
- Neutral by construction — no proprietary vendor or alternate-edition branding in tracked files (a pre-commit guard enforces it). Data, weights, and secrets stay local; only code and docs publish.
- Reproducible build — pinned generators and a strict CI gate; this very site fails its build before publishing if the registry is malformed or a link breaks.
Privacy & the compute posture¶
All patient data stays on the local box. Heavy or ARM-incompatible models burst to remote GPU over a private mesh — "elastic burst," not "all on one box" — and only derived, non-identifying work is sent to a burst GPU, never raw PHI.
Decision support, not a medical device
The factory supports a qualified clinician; it does not diagnose or prescribe autonomously, and it is not marketed as a medical device. See Honesty & Governance and the Citations & Evidence behind every clinical claim.