Quick Start

pip install heepx
hx learn warrant
import heepx

warrant = heepx.learn("warrant")
print(warrant.name, warrant.version)

hx learn warrant downloads and caches the real, published warrant capability from github.com/HeepX, pinned at its newest release tag — the first call needs network access, a repeat call doesn't. The Python snippet loads the same thing as a typed Capability object.

What just happened

  • hx learn warrant resolved warrant against the default registry, cached it locally, and printed a summary (version, fingerprint, cache path).
  • heepx.learn("warrant") does the same thing from Python, returning a Capability you can inspect directly.

Run it again — either the CLI or the Python call — and nothing is downloaded a second time; a cached version is loaded straight from disk.

Next