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 warrantresolvedwarrantagainst the default registry, cached it locally, and printed a summary (version, fingerprint, cache path).heepx.learn("warrant")does the same thing from Python, returning aCapabilityyou 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
- Installation for supported Python versions and a dev setup.
- CLI reference for every
hxcommand. - SDK reference for every Python function.
- Registry to browse what's available before learning it.