core/packs/identity/__init__.py
Shay 310aed9ff0
chore: Refactor CLI and Governance Anchors (#926)
* docs: consolidate governance anchors and clean up test registries

* refactor(cli): decompose cli into dedicated modules

* test: fix broken test baselines and formatting

* docs: add domain boundary READMEs for governance anchors

* test: update baseline for determination lane

* test: fix capability_pass expectation

* test: fix CORE_SHOWCASE_SKIP_BUDGET enforcement

* chore: cleanup CLI extraction and unreachable code
2026-07-03 12:34:56 -07:00

14 lines
422 B
Python

"""Identity packs — on-disk, content-addressed IdentityManifolds.
See ``docs/identity_packs.md`` for the pack format, loader contract, and
authoring guide. See ``docs/adr/ADR-0027-identity-packs.md`` for
the decision record.
"""
from packs.identity.loader import (
IdentityPackError,
available_packs,
load_identity_manifold,
)
__all__ = ["IdentityPackError", "available_packs", "load_identity_manifold"]