Registries roadmap
One engine. Every registry. Adding a new registry means adding a parser, not launching a new product. Same compliance frameworks apply uniformly — only the adapter layer is registry-specific.
/hflivehttps://huggingface.co/apiLargest open AI artefact registry. Standard model-card spec. Highest immediate demand from EU AI Act + ISO 42001 customers.
/kaggleplannedhttps://www.kaggle.com/api/v1/Largest dataset registry. Strong demand from healthcare + insurance customers. License-inheritance checks especially relevant for competition datasets.
/modelscopeplannedhttps://modelscope.cn/api/v1/Required for any tenant operating in China or with PIPL exposure. Adapter pattern identical to HF; data-residency considerations addressed at engine layer.
/replicateplannedhttps://api.replicate.com/v1/Different artefact shape — inference-first rather than weights-first. Compliance angles: usage-volume disclosure, inference-time governance, output retention.
/civitaiplannedhttps://civitai.com/api/v1/Highest IP-risk registry — model + LoRA outputs frequently derive from copyrighted source material. License-inheritance + dataset-provenance checks are the differentiator.
/mlflowplannedMLflow Tracking Server REST APIEnterprise tier — banks + insurers run their own MLflow registries inside their VPC. Adapter pulls from customer-controlled endpoint with their own auth.
/gh-releasesplannedhttps://api.github.com/repos/{owner}/{repo}/releasesMany academic + bespoke models ship via GH Releases rather than HF. The existing Code Constitution GH App already has read access; adapter is a thin layer.
Why one composition
Each registry's adapter implements the same LogSourceAdapter + ArtefactInspector interfaces. The compliance-evaluation engine consumes the normalised LogEntry and ArtefactMetadata shapes — never registry-specific structures. This means the same EU AI Act check that runs against a HuggingFace model also runs against a ModelScope model, a Replicate model, a Civitai LoRA, or a private MLflow artefact — with zero engine changes.
See compliancetoarchitecture.com for the open methodology spec.