core/formation/__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

51 lines
1.3 KiB
Python

"""Formation Pipeline — content-addressed, trust-bounded data foundry.
Turns raw subject material into Ratified, replay-proof versor relations
through Mine -> Smelt -> Forge -> Compose -> Compile -> Run -> Ratify ->
Promote, running entirely on top of CORE's existing CognitiveTurnPipeline.
The architectural commitment: nothing crosses a trust boundary without a
content-addressed audit trail. See ``docs/formation_pipeline_plan.md``
and ``docs/specs/runtime_contracts.md`` (Formation trust boundaries section).
"""
from formation.candidate import (
CandidateState,
ConceptCandidate,
CounterCandidate,
OrderingHint,
RelationCandidate,
SourceRef,
)
from formation.course import (
CourseYAML,
FormationPlan,
MasteryReport,
OreBundle,
SubjectSpec,
ValidatedTripleSet,
)
from formation.hashing import canonical_json, self_seal, sha256_of
from formation.smelter import SmeltedBundle, smelt
__all__ = [
"CandidateState",
"ConceptCandidate",
"CounterCandidate",
"CourseYAML",
"FormationPlan",
"MasteryReport",
"OreBundle",
"OrderingHint",
"RelationCandidate",
"SmeltedBundle",
"SourceRef",
"SubjectSpec",
"ValidatedTripleSet",
"canonical_json",
"self_seal",
"sha256_of",
"smelt",
]
SCHEMA_VERSION: str = "1.0.0"