core/core/physics/identity.py
Shay ab4c7cb0c3
feat(epistemic): Phase 3 state tagging spine (#220)
* feat(epistemic): add first-class state enums

* feat(epistemic): tag TurnEvent with state axes

* feat(epistemic): serialize turn state axes

* feat(packs): tag curated and inferred unit entries

* feat(epistemic): expose word-level state on manifold

* feat(epistemic): expose vault status mapping

* feat(epistemic): preserve pack entry states through compiler

* test(epistemic): cover phase 3 state tagging spine

* feat(runtime): wire epistemic_state + normative_clearance into ChatResponse

Add first-class epistemic_state and normative_clearance fields to
ChatResponse (defaulting to "undetermined"/"unassessable" for backward
compat). Import epistemic_state_for_grounding_source and
clearance_from_verdicts into chat/runtime.py and populate both fields on
the stub path (TurnEvent + ChatResponse) and the main path (TurnEvent +
ChatResponse). Fix the test fixture to use "euro per hour" (a genuinely
composed unit) instead of "dollars per hour" which is a curated lexicon
entry and returns DECODED, not INFERRED.

* test(cognition): update term_capture_rate baseline from 0.9167 to 1.0

unknown_logos_019 now correctly surfaces "light" as a pack-resident
token near the logos versor — producing term_capture_rate 1.0 on both
main and Phase 3. The 0.9167 pin was stale relative to a surface change
already on main; Phase 3 did not introduce this shift.
2026-05-24 11:26:06 -07:00

349 lines
14 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""core.physics.identity — Identity as geometric structure, not prompt veneer.
ADR-0010: The IdentityManifold is a fixed geometric subspace of the
versor field encoding CORE's stable character as an architectural
constant. Every ReasoningTrajectory is checked against the manifold
before articulation. Identity is inalienable — it cannot be overridden
by context length, adversarial prompting, or instruction injection.
Theological grounding: John 1:1-2.
The Word is not a description of God. It is God, expressed.
CORE's identity is not a description of CORE. It is CORE, expressed geometrically.
"""
from __future__ import annotations
import math
import warnings
from dataclasses import dataclass
from typing import Dict, FrozenSet, List, Optional, Tuple
@dataclass(frozen=True)
class ValueAxis:
"""Compatibility value-axis shape for identity-gate tests and fixtures.
Runtime code may also pass core.physics.drive.ValueAxis instances. The
identity checker only requires axis_id, name, direction, and optional
theological_note, so both shapes are accepted.
"""
name: str
direction: Tuple[float, ...]
axis_id: str | None = None
weight: float = 1.0
theological_note: str = ""
def __post_init__(self) -> None:
object.__setattr__(self, "axis_id", self.axis_id or self.name)
object.__setattr__(self, "direction", tuple(float(x) for x in self.direction))
@dataclass(frozen=True)
class IdentityScore:
"""Result of checking a ReasoningTrajectory against the IdentityManifold."""
score: float # 0.0 = full deviation, 1.0 = full alignment
flagged: bool # True if any axis projection fell below alignment threshold
deviation_axes: FrozenSet[str] # ValueAxis IDs where deviation was detected
trajectory_id: str
@property
def value(self) -> float:
"""Alias for score — primary scalar alignment value (0.01.0)."""
return self.score
@property
def alignment(self) -> float:
"""Fraction of axes that were NOT flagged as deviating."""
axes = self.deviation_axes
if not axes:
return 1.0
return self.score
@property
def axes_evaluated(self) -> List[str]:
"""Sorted list of deviation_axes IDs — used by the JSONL serialiser."""
return sorted(self.deviation_axes)
@dataclass(frozen=True)
class AxisHedge:
"""Per-axis hedge phrases for ADR-0031 score-decomposition.
When ``IdentityCheck`` flags one or more axes as deviating, the
assembler can call out the specific axis instead of using the
generic hedge. v1 is English-only; depth-language axis hedges are
a future ADR.
"""
strong: str
soft: str
qualifier: str
@dataclass(frozen=True)
class SurfacePreferences:
"""Pack-supplied surface phrasing preferences (ADR-0028).
Drives the assembler's hedge and claim-strength decisions so that
swapping identity packs produces visibly different surfaces on the
same prompt. Defaults preserve the pre-ADR-0028 behavior: the
legacy ``HEDGE_STRONG_THRESHOLD`` / ``HEDGE_SOFT_THRESHOLD``
constants and the canned ``"It seems that"`` / ``"Perhaps"`` hedges.
``claim_strength`` semantics:
* ``"balanced"`` — no claim-strength effect outside the hedge band.
* ``"qualified"`` — when alignment falls in
``[hedge_threshold_soft, qualified_band_high)``, prepend
``preferred_qualifier`` instead of leaving the surface bare.
* ``"affirmative"`` — never qualify in the marginal band; let the
assertion stand.
"""
hedge_threshold_strong: float = 0.40
hedge_threshold_soft: float = 0.50
preferred_hedge_strong: str = "It seems that"
preferred_hedge_soft: str = "Perhaps"
claim_strength: str = "balanced"
qualified_band_high: float = 0.75
preferred_qualifier: str = "In some cases,"
# ADR-0031 — per-axis hedge phrases keyed by axis_id. When a
# deviating axis matches an entry, the assembler uses that axis's
# phrase instead of the generic ``preferred_hedge_*`` above.
# Tuple of ``(axis_id, AxisHedge)`` pairs for hashability under
# frozen dataclass semantics; pairs are kept in lex order on
# ``axis_id`` so determinism is preserved across loads.
axis_hedges: Tuple = () # Tuple[Tuple[str, AxisHedge], ...]
@dataclass(frozen=True)
class IdentityManifold:
"""Fixed geometric subspace encoding CORE's stable character."""
value_axes: Tuple = () # Tuple[ValueAxis, ...]
boundary_ids: FrozenSet[str] = frozenset()
alignment_threshold: float = 0.45
surface_preferences: SurfacePreferences = SurfacePreferences()
class IdentityCheck:
"""Checks a ReasoningTrajectory against an IdentityManifold.
Canonical call style:
IdentityCheck().check(trajectory, manifold)
Deprecated compatibility style:
IdentityCheck(manifold=manifold).check(trajectory)
"""
def __init__(self, manifold: IdentityManifold | None = None) -> None:
if manifold is not None:
warnings.warn(
"IdentityCheck(manifold=...) is deprecated; use "
"IdentityCheck().check(trajectory, manifold).",
DeprecationWarning,
stacklevel=2,
)
self._manifold = manifold
@staticmethod
def _clamp01(value: float) -> float:
return max(0.0, min(1.0, float(value)))
@staticmethod
def _mean_frame_coherence(trajectory) -> float:
frames = getattr(trajectory, "frames", None)
if not frames:
return 0.0
return sum(
float(getattr(frame, "coherence_magnitude", 0.0)) for frame in frames
) / len(frames)
@staticmethod
def _axis_projection(axis, trajectory, scalar_score: float) -> float:
"""Deterministically project trajectory evidence onto one value axis."""
direction = tuple(float(x) for x in getattr(axis, "direction", ()) or ())
if not direction:
return scalar_score
full_l2 = math.sqrt(sum(x * x for x in direction)) or 1.0
head_l2 = math.sqrt(sum(x * x for x in direction[:3]))
directional_weight = head_l2 / full_l2
frame_coherence = IdentityCheck._mean_frame_coherence(trajectory)
coherence_term = IdentityCheck._clamp01(0.5 + (frame_coherence / 2.0))
return IdentityCheck._clamp01(
(0.75 * scalar_score) + (0.25 * directional_weight * coherence_term)
)
def check(self, trajectory, manifold: IdentityManifold | None = None) -> IdentityScore:
resolved_manifold = manifold or self._manifold
if resolved_manifold is None:
raise TypeError("IdentityCheck.check() requires an IdentityManifold")
trajectory_id = str(getattr(trajectory, "trajectory_id", "legacy_trajectory"))
if not resolved_manifold.value_axes:
return IdentityScore(
score=1.0,
flagged=False,
deviation_axes=frozenset(),
trajectory_id=trajectory_id,
)
confidence = float(getattr(trajectory, "total_coherence_delta", 0.0))
confidence += self._mean_frame_coherence(trajectory)
score = self._clamp01(0.5 + (confidence / 2.0))
deviations = frozenset(
str(getattr(axis, "axis_id", getattr(axis, "name", "axis")))
for axis in resolved_manifold.value_axes
if self._axis_projection(axis, trajectory, score) < resolved_manifold.alignment_threshold
)
return IdentityScore(
score=score,
flagged=bool(deviations),
deviation_axes=deviations,
trajectory_id=trajectory_id,
)
@staticmethod
def would_violate(
score: IdentityScore | None,
manifold: IdentityManifold | None = None,
) -> bool:
"""Geometric identity-violation predicate (ADR-0010).
Returns True when the trajectory's projection onto the IdentityManifold
shows any value-axis falling below the manifold's alignment threshold,
OR when the overall alignment scalar itself drops below threshold.
This is the paraphrase-invariant defense: an identity-override attempt
is recognised by the geometry of the field-state delta it induces, not
by lexical surface. Reviewers wire this in addition to (not instead
of) any syntactic guard so the two layers remain independent.
"""
if score is None:
return False
if score.flagged:
return True
if manifold is not None and score.score < manifold.alignment_threshold:
return True
return False
@dataclass(frozen=True)
class CharacterProfile:
"""Human-readable projection of the IdentityManifold."""
traits: Dict[str, str]
drive_summaries: Dict[str, float]
fatigue_index: float
boundary_commitments: Tuple[str, ...]
theological_grounding: Dict[str, str]
@classmethod
def from_manifold(
cls,
manifold: IdentityManifold,
drive_summaries: Optional[Dict[str, float]] = None,
fatigue_index: float = 0.0,
) -> "CharacterProfile":
traits: Dict[str, str] = {}
theological_grounding: Dict[str, str] = {}
for axis in manifold.value_axes:
traits[axis.name] = (
f"Fixed geometric direction {axis.direction} "
f"in versor manifold — non-negotiable."
)
theological_note = getattr(axis, "theological_note", "")
if theological_note:
theological_grounding[axis.name] = theological_note
return cls(
traits=traits,
drive_summaries=drive_summaries or {
axis.name: 0.0 for axis in manifold.value_axes
},
fatigue_index=fatigue_index,
boundary_commitments=tuple(sorted(manifold.boundary_ids)),
theological_grounding=theological_grounding,
)
@dataclass(frozen=True)
class TurnEvent:
"""Append-only provenance record for one chat turn."""
turn: int
input_tokens: Tuple[str, ...]
surface: str
walk_surface: str
articulation_surface: str
dialogue_role: str
identity_score: Optional[IdentityScore]
cycle_cost_total: float
vault_hits: int
versor_condition: float
flagged: bool
elaboration: Optional[str] = None
# ADR-0035 — verdicts from SafetyCheck and EthicsCheck at end-of-turn.
# Observational at v1: surfaced for audit; no behavioral effect.
# Typed as ``object`` to avoid coupling identity.py to packs.*.
safety_verdict: object = None
ethics_verdict: object = None
# ADR-0039 — unified verdict bundle (TurnVerdicts). Typed as
# ``object`` to avoid coupling identity.py to chat.verdicts.
# Carries refusal_emitted / hedge_injected remediation flags
# alongside the three verdict surfaces.
verdicts: object = None
# ADR-0048 / ADR-0050 / ADR-0052 — provenance tag mirroring
# ChatResponse.grounding_source. One of:
# "vault" | "pack" | "teaching" | "none".
# Preserved verbatim through the TurnEvent telemetry stream for
# downstream audit consumers.
grounding_source: str = "none"
# Epistemic Phase 3 — first-class proposition state axes. Strings
# intentionally mirror core.epistemic_state enum values without
# importing that module here, preserving identity.py's low-coupling
# role as a shared value-type module.
epistemic_state: str = "undetermined"
normative_clearance: str = "unassessable"
normative_detail: str = ""
# ADR-0072 (R5) — operator-visible register identity per turn.
# ``register_id`` is the loaded pack id (e.g. ``"convivial_v1"``),
# or ``""`` for the in-memory UNREGISTERED sentinel.
# ``register_variant_id`` is the 12-char SHA-256 prefix of the
# selected ``(opening, closing)`` discourse-marker pair, or ``""``
# when no decoration was applied this turn (empty buckets, or empty
# surface). Both default to ``""`` so pre-R5 callers stay
# byte-identical.
register_id: str = ""
register_variant_id: str = ""
# ADR-0073d (L1.4) — operator-visible anchor-lens identity per turn.
# ``anchor_lens_id`` is the loaded pack id (e.g. ``"grc_logos_v1"``),
# or ``""`` for the in-memory UNANCHORED sentinel.
# ``anchor_lens_mode_label`` is the engaged ``cognitive_mode_label``
# when the lens fired on this turn's lemma (extracted from the
# composer-emitted ``[lens(<id>):<mode>]`` annotation), or ``""``
# when the lens was loaded but did not engage on this turn's
# lemma, or when no lens was loaded at all. Both default to
# ``""`` so pre-L1.4 callers stay byte-identical.
anchor_lens_id: str = ""
anchor_lens_mode_label: str = ""
# ADR-0075 (C1) — realizer slot-type guard verdict per turn.
# ``realizer_guard_status`` is ``"ok"`` when the guard accepted
# the candidate surface, ``"rejected"`` when one of R1/R2/R3
# fired and the runtime routed the surface to the bounded
# disclosure string, or ``""`` on pre-C1 events that pre-date
# the guard hook. ``realizer_guard_rule`` carries the rule_id
# (one of ``"R1_no_finite_verb"``, ``"R2_aux_neg_requires_verb"``,
# ``"R3_be_neg_requires_predicate"``) when status is
# ``"rejected"``, otherwise ``""``. Both default to ``""`` so
# pre-C1 callers stay byte-identical.
realizer_guard_status: str = ""
realizer_guard_rule: str = ""
# ADR-0077 (R6) — register layering boundary. Carries the composer
# output BEFORE any register transformation (substantive or
# decorative). The cognition pipeline hashes this field for
# ``trace_hash`` when present, preserving R5's load-bearing
# invariant — substantive register transforms must not move
# ``trace_hash``. Pre-R6 callers leave this as ``""``; the
# pipeline falls back to the existing ``pre_decoration_surface``
# source in that case (byte-identity preserved).
register_canonical_surface: str = ""
# ADR-0078 (Phase 1) — observational composer/graph atom
# equivalence telemetry. Empty defaults preserve back-compat for
# pre-ADR-0078 callers and non-applicable turns.
composer_graph_atom_status: str = ""
composer_atom_set_hash: str = ""
graph_atom_set_hash: str = ""
composer_graph_atom_overlap_count: int = 0