- Green make test-fast suite: fixed exemplar corpus issues, proposal validation, atomic state checkpointing (scheme=2), turn-scoped state leakage in ChatRuntime.chat - ADR corpus consolidation: migrated all ADRs to docs/adr/, appended ADR-0225 governance cross-reference anchors to foundational ADRs (0001, 0027-0029, 0055-0057) - Pack definitional closure: fixed en_arithmetic_v1 glosses.jsonl JSON error, updated manifest checksum, marked en_core_syntax_v1 definitional_layer: false
3.2 KiB
ADR-0001: VocabManifold Versor Invariant
Date: 2026-05-12
Status: Accepted
Commit: bd423e4
Context
VocabManifold stores word representations as multivectors in Cl(4,1). Without
an enforced invariant, nothing prevented a caller from inserting a raw coordinate
vector — a numpy array derived from an external embedding model, a lookup table,
or any float array not constructed through the algebra — into the vocabulary.
Such a vector would silently introduce an implicit Euclidean coordinate frame
inside the vocabulary layer, undermining the entire field-state architecture.
This is a "back door" problem: the architecture is geometrically clean at every
explicit boundary, but the vocabulary layer had no enforcement preventing external
coordinate representations from entering through add().
Decision
Enforce the Cl(4,1) versor grade-norm condition at insertion time in
VocabManifold.add():
grade_norm = float(geometric_product(v, reverse(v))[0])
if not (0.95 <= abs(grade_norm) <= 1.05):
raise ValueError(...)
The scalar part of V * reverse(V) must be approximately ±1. This is the
algebraic condition that distinguishes a valid Cl(4,1) versor from an arbitrary
float array. Any raw embedding vector will fail this check.
Rationale
Serves Reality-over-Inheritance: governance is not a policy added later; it is a type-level contract enforced at construction. The vocabulary layer cannot be bypassed by a well-intentioned caller who "knows what they’re doing."
Serves Geometry-first: the first task is finding the intrinsic space. Once we’ve defined that space as Cl(4,1) with CGA structure, everything entering the vocabulary must live in that space by algebraic proof, not by convention.
Consequences
- Easier: Trust in the vocabulary is absolute. Any word returned by
nearest()is guaranteed to be a valid CGA point. No defensive checks needed downstream. - Harder: Callers must lift external representations through
normalize_to_versor()before insertion. This is intentional friction. - Forbidden: Inserting raw embedding vectors, cosine-similarity vectors, or any array not constructed through the algebra layer.
Alternatives Considered
- Soft warning instead of hard raise: Rejected. A warning that can be ignored is not an invariant.
- Normalize silently on insert: Rejected. Silent normalization hides the documentation at the point of failure.
Governance Cross-Reference (ADR-0225)
This foundational ADR is governed by ADR-0225:
- Safety boundaries: no direct interaction with safety or identity packs; defines the geometric manifold underlying token representation.
- Versor closure: establishes the foundational
versor_condition(F) < 1e-6requirement for all vocabulary representations. - Reconstruction-over-storage: stores normalized Cl(4,1) versor points rather than raw embedding vectors.
- Replay-equivalence: exact CGA inner product nearest lookup ensures deterministic recall without approximate nearest neighbor drift.
- Mutation standing: vocabulary manifold updates are governed by explicit construction boundaries (
vocab/manifold.py).