class Capsium::Registry

A static package registry: a directory or a static https base URL holding an index.json plus .cap files stored relative to the registry root, so any static host (GitHub Pages, S3, nginx) can serve it. Index shape:

{ "packages": { "<guid>": { "name": "story-of-claire",
  "versions": { "1.0.0": { "file": "story-of-claire-1.0.0.cap",
                           "sha256": "<hex>", "size": 642047 } } } } }

Registry.fetch(ref) returns the implementation for a reference: a Local directory (read-write) or a Remote http(s) base URL (read-only). Both resolve and install; only Local pushes.