* 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. * docs(epistemic-scope): mark Framing 1 audit complete across all six subsystems Teaching pipeline (47 pts, 0 new states), cognition pipeline (42 pts, 0 new states, 1 EPISTEMIC_STATE_NEEDED placeholder), and chat runtime (47 pts, 0 new states, 6 provenance gaps) audits complete. Taxonomy confirmed stable; remaining work is implementation debt and provenance, not taxonomy extension.
30 KiB
Scope: Epistemic State Taxonomy
Status: Draft / scope-only (not a decision yet — prerequisite for one) Date: 2026-05-24 Author: CORE agents Audit: Math-subsystem audit complete (2026-05-24) — 40 decision points, 4 gaps ratified. Vault audit complete (2026-05-24) — 0 new states, 1 implementation debt. Language-packs audit complete (2026-05-24) — 1 gap (INFERRED) ratified. Runtime-packs audit complete (2026-05-24) — 0 new epistemic states; normative clearance axis identified as separate companion axis. Teaching pipeline audit complete (2026-05-24) — 47 decision points, 0 new states, 4 minor implementation debts. Cognition pipeline audit complete (2026-05-24) — 42 decision points, 0 new states, 1 EPISTEMIC_STATE_NEEDED (refusal_reason placeholder, materialisation deferred). Chat runtime audit complete (2026-05-24) — 47 decision points, 0 new states, 6 provenance gaps (dispatcher does not carry decision rationale). Framing 1 audit complete across all six subsystems. Anchor: thesis-decoding-not-generating (memory) Related: teaching-derived-recognition-scope
Why this document exists
The thesis commits CORE to decoding a reality that already is. Decoding, unlike generation, requires the engine to hold propositions in varying degrees of grounding — not "true" vs "false" but a richer vocabulary describing how a proposition is currently known, and what evidence supports that knowing.
Without an explicit taxonomy of epistemic states, the engine implicitly caps its epistemic scope at binary admit/refuse. That cap blocks two things the engine needs:
-
Provisional reasoning. The engine must be able to hold a proposition that has evidence but is not yet verified, reason with it cautiously, and surface it with appropriate marking — without either committing prematurely (which is generation) or refusing prematurely (which is paralysis).
-
Expansion and contraction of scope through teaching. New epistemic states should be derivable from teaching, the same way new patterns are. Hard-coding the taxonomy caps the engine's ability to discover that it needs distinctions it didn't initially have names for.
This scope document defines the question — what epistemic vocabulary should the engine reason with, and how should that vocabulary itself be derived. It does not propose a decision.
The load-bearing question
What is the smallest extensible vocabulary of epistemic states the engine needs to hold for any proposition it reasons about, such that:
- Every state carries deterministic provenance (why is the proposition in this state?),
- State transitions are themselves deterministic and inspectable (what evidence moved this proposition from state A to state B?),
- The taxonomy is extensible through the teaching loop (new states can be ratified when existing ones don't fit), and
- The engine refuses propositions whose state cannot be cleanly determined, rather than defaulting?
The four conditions parallel the recognition scope's four conditions — deliberately. Both axes (recognition and epistemic state) commit to the same discipline: deterministic, inspectable, extensible, refusal-first.
Starter taxonomy
These states are now stable through three subsystem audits (math, vault, language_packs, runtime packs). Names are ratified. EPISTEMIC_STATE_NEEDED remains available for future gaps found by further audits.
| State | Meaning | Source of evidence | Transition cues |
|---|---|---|---|
| PERCEIVED | Token/span observed in input; not yet committed to meaning | Raw ingestion | → EVIDENCED once features lifted; → UNDETERMINED if features can't lift |
| EVIDENCED | Feature lifts from specific input spans bind a proposition; grounded in input | Recognition layer | → VERIFIED on cross-reference pass; → CONTRADICTED if conflict found; → UNVERIFIED-POSSIBLE if non-contradicting but unconfirmed |
| EVIDENCED-INCOMPLETE | Feature lift succeeded for a sub-span; the lifted structure exists but cannot yet form a complete well-formed proposition (e.g., a rate declaration that no question consumes). Lift did not fail — the evidence is real — but the proposition is structurally partial. Distinct from UNDETERMINED (lift completed) and CONTRADICTED (nothing conflicts). | Recognition layer — partial structural match | → EVIDENCED once a consuming proposition is found or constructed; → UNDETERMINED if no completion mechanism exists; → teaching expansion if the engine needs a new structural pattern to complete it |
| VERIFIED | Cross-checked against ratified knowledge (pack / vault / teaching); consistent | Substrate cross-reference | → DECODED once replay-equality confirmed; stays VERIFIED otherwise |
| DECODED | VERIFIED plus replay-equality from input (trace-hash invariant) | Replay machinery | → DECODED-UNARTICULATED if the surface realization path breaks after verification; transitions only on retraction (subsequent teaching invalidates) otherwise terminal |
| DECODED-UNARTICULATED | The proposition is DECODED internally — trace is replay-equal and the verifier passed — but the surface realization path broke. The answer is correct; the explanation cannot be communicated. The runner must not classify this as wrong (which would conflate articulation failure with epistemic failure). |
Verifier (replay-equal) + Realizer (failure) | → DECODED once the articulation path is repaired; stays distinct from DECODED until that repair is confirmed |
| INFERRED | Derived from DECODED components by a ratified deterministic rule, but the composite was never itself curated or ratified as a lexical entry. Stronger than UNVERIFIED-POSSIBLE (derivation is deterministic and components are DECODED); weaker than DECODED (the composite has not been independently ratified). Grounded by the language_packs composition rules (per, square, cubic unit synthesis) — the rule is ratified; the output is not. |
Rule application over DECODED primitives | → DECODED if the composed result is subsequently curated and ratified; → CONTRADICTED if rule application produces a result that conflicts with a ratified entry; stays INFERRED until ratification |
| UNVERIFIED-POSSIBLE | Consistent with verified knowledge but not directly verified; usable provisionally | Default for non-contradicting novel propositions | → VERIFIED if cross-reference confirms; → CONTRADICTED if cross-reference rejects |
| UNVERIFIED-NOVEL | Not contradicted; introduces structure the engine hasn't decoded yet; candidate for teaching expansion | Refusal that points at expansion need | → EVIDENCED once teaching corpus adds vocabulary; → CONTRADICTED if eventually disproven |
| CONTRADICTED | Conflicts with verified knowledge; refuse unless this is a ratified correction | Verification failure | → EVIDENCED only via ratified correction through teaching loop |
| AMBIGUOUS | Input could support multiple incompatible propositions; engine cannot choose without more context | Multi-evidence-binding conflict at recognition | → resolution requires additional input or teaching disambiguation |
| UNDETERMINED | Feature lifts could not complete; specific dimensions missing | Recognition-layer refusal | → EVIDENCED if teaching supplies missing vocabulary |
| SCOPE_BOUNDARY | The engine recognized the proposition type but refuses because the proposition type is outside its current capability envelope. Distinct from UNDETERMINED (the lift succeeded — the engine knows what it is) and CONTRADICTED (there is no conflict — the engine simply cannot decode it yet). | Capability-envelope check — structural match succeeded; semantic decode not available | → EVIDENCED or VERIFIED once teaching extends the capability envelope; stays SCOPE_BOUNDARY until that extension is ratified |
| COMPUTATIONALLY_BOUNDED | The engine cannot determine the epistemic status of the proposition within its resource envelope. Not AMBIGUOUS (no answers were enumerated) and not UNDETERMINED (the text likely has structure). The engine ran out of search budget before establishing what the proposition is. | Search/enumeration resource-limit hit | → AMBIGUOUS or UNDETERMINED once the search completes under relaxed constraints; → teaching expansion if the problem class needs a fundamentally different search strategy |
Plus one meta-state:
| EPISTEMIC_STATE_NEEDED | None of the existing states fit this proposition; engine refuses and surfaces the gap | Recursive refusal | → ratified-via-teaching expansion of the taxonomy itself |
The meta-state is what makes the taxonomy non-capping. When the engine encounters a case that doesn't fit any current state, it refuses with "epistemic state needed: a state that captures ...", and the teaching loop either ratifies a new state or determines that an existing state already covers the case with different framing.
Normative clearance axis (companion, orthogonal to epistemic state)
The runtime-packs audit established that safety and ethics verdicts are not epistemic states. They are answers to a different question:
- Epistemic axis: What does the engine believe about the truth-value of this proposition?
- Normative axis: Has this turn's behavior complied with the active constraints?
These axes are orthogonal. A VERIFIED proposition can violate a safety boundary. An UNDETERMINED proposition can pass every ethics predicate. The verdict does not change the epistemic state; the epistemic state does not determine the verdict.
Every proposition reaching ChatResponse or TurnEvent carries both
an epistemic state (from the 14-state taxonomy above) and a normative
clearance state (from the four-value axis below).
| Clearance state | Meaning | Source | Notes |
|---|---|---|---|
| CLEARED | All active normative constraints (safety + ethics) passed for this turn | Safety check + ethics check both upheld=True |
Necessary but not sufficient for surfacing — epistemic state must also be above the threshold the operator has set |
| VIOLATED | At least one normative constraint was breached; audit record written | Safety or ethics check returned upheld=False |
If the violated commitment is in refusal_commitments, transitions to SUPPRESSED before the proposition reaches the surface |
| UNASSESSABLE | Constraint exists but cannot be evaluated at runtime (runtime_checkable=False) |
Check returned upheld=True, runtime_checkable=False |
Engine defaults to non-violation conservatively; not equivalent to CLEARED (evidence is absent, not positive) |
| SUPPRESSED | A refusal commitment fired; the proposition was replaced with a typed refusal before it could be assigned an epistemic state at the surface | refusal_commitments match + predicate upheld=False |
The proposition may have any epistemic state internally; from the user's perspective it never surfaced. Distinct from VIOLATED (which surfaces with an audit tag) |
Integration point: ChatResponse and TurnEvent each carry both axes:
proposition: <feature_bundle | None>
epistemic_state: <one of the 14-state taxonomy>
normative_clearance: <CLEARED | VIOLATED | UNASSESSABLE | SUPPRESSED>
provenance: <structured record of source / spans / mechanism>
refusal_reason: <typed reason if epistemic state is refusal-class | None>
normative_detail: <violated boundary / commitment IDs if VIOLATED or SUPPRESSED | None>
What this resolves: Open question 5 (identity / safety / ethics interaction) is now answered. Safety and ethics verdicts live on the normative axis. Identity packs ground the epistemic axis (what counts as decoding). The two axes co-exist on every turn record without collapsing into each other.
Provenance is non-optional
Every assignment of a state to a proposition must carry provenance — a structured record of:
- Source: which subsystem assigned this state (recognition, vault, pack, teaching, verifier, etc.)
- Evidence span(s): which input or knowledge spans supported the assignment
- Transition history: if this proposition was previously in another state, what evidence caused the transition
Provenance is what distinguishes thesis-aligned epistemic tracking from LLM-style confidence scores. A confidence score is a number; provenance is a trace the engine can replay, audit, and correct.
Concretely: a proposition in state EVIDENCED isn't just "the engine
thinks this is evidenced." It's "the engine assigns EVIDENCED because
feature polarity was lifted from span 6:9 of input {...} and feature
modality was lifted from span 0:5; recognition mechanism was
anti-unification over teaching set {X, Y, Z}; replay produces this
identical binding byte-for-byte."
That last sentence is what the provenance record actually contains. The engine can hand it to a reviewer; the reviewer can audit it; the teaching loop can target specific parts of it for correction.
How this maps to existing CORE primitives
Several states already exist implicitly in scattered subsystems. What's missing is the unified vocabulary.
| Existing primitive | Maps to | Notes |
|---|---|---|
| Vault exact recall | DECODED | Replay-equal by construction |
| Ratified pack data | VERIFIED → DECODED | Verified at load, replay-equal on consult |
| Reviewed teaching example | VERIFIED | Cross-checked via review; not yet replay-equal until used |
SPECULATIVE_MARKER (ADR-0021) |
UNVERIFIED-POSSIBLE | Speculative teaching surfaced with explicit marker |
ParseError / SolveError |
UNDETERMINED | Typed refusals with reasons |
| Verifier rejection | CONTRADICTED | Independent re-derivation disagrees |
| OOV refusal (ADR-0065) | UNVERIFIED-NOVEL | Token not in vocabulary; pointed at teaching expansion |
| Anchor-lens engagement | (cross-cutting) | Different lenses can produce different states for the same proposition |
| Orphan-rate refusal (math parser) | EVIDENCED-INCOMPLETE | Rate structure was parsed; no question consumed it — partial proposition, not a failed lift |
| Age/nested-comparison refusal (math parser) | SCOPE_BOUNDARY | Regex matched; the proposition type is recognized but outside current decode capability |
Runner RealizerError on verified trace |
DECODED-UNARTICULATED | Trace passed verifier; surface path broke — currently misclassified as wrong in the runner |
| Candidate-graph branch cap exceeded | COMPUTATIONALLY_BOUNDED | Search budget exhausted before answers could be enumerated; not AMBIGUOUS, not UNDETERMINED |
lookup_unit composition rules (per, square, cubic) |
INFERRED | Unit derived from DECODED primitives by ratified rule; composite was never itself curated |
Vault decomposed recall above UNKNOWN_FLOOR |
UNVERIFIED-POSSIBLE | Recognized by geometric component composition; not exact direct recall |
SafetyCheckResult(upheld=True, runtime_checkable=True) |
CLEARED (normative axis) | Safety constraint confirmed upheld this turn — normative axis, not epistemic |
SafetyCheckResult(upheld=False, ...) |
VIOLATED (normative axis) | Safety boundary breached — normative finding; proposition's epistemic state is unchanged |
SafetyCheckResult(upheld=True, runtime_checkable=False) |
UNASSESSABLE (normative axis) | Constraint not evaluable per-turn; engine defaults conservatively to non-violation |
refusal_commitments predicate fires |
SUPPRESSED (normative axis) | Proposition replaced with typed refusal; never assigned epistemic state at surface |
EthicsPack.hedge_commitments |
UNASSESSABLE → soft surface hedge | Normative obligation to mark uncertainty; adjacent to UNVERIFIED-POSSIBLE but on normative axis |
The mapping shows the taxonomy isn't being invented from scratch — it's naming distinctions the engine already makes ad-hoc and unifying their treatment.
Extensibility — the recursive part
The taxonomy itself must be derived from teaching, not stipulated.
Mechanism (proposed for follow-on spike, not committed here): when the engine produces an EPISTEMIC_STATE_NEEDED refusal, the refusal carries a structured description of the gap — what the existing states don't capture, what evidence would belong to the new state, what transitions would lead in and out of it. A reviewer can examine the description and either:
- Identify an existing state the gap actually maps to (with different framing); update the description, the engine re-attempts.
- Ratify a new state through the teaching loop, with the description as the seed of its definition.
This is the same shape as how new lemmas, atoms, or chains enter the packs. Epistemic states become first-class data the engine can extend its own vocabulary with — under review.
Constraint: the meta-state mechanism itself stays bounded. The engine cannot create new meta-states (states-of-states-of-states...) without explicit architectural commitment. EPISTEMIC_STATE_NEEDED is the only recursive surface; further recursion is deferred. This prevents runaway scope.
Relationship to the recognition scope
The recognition spike (per the recognition-scope document) produces typed proposition outputs from input text. The output structure must accommodate epistemic state from day one, even if the full taxonomy isn't yet ratified.
Concrete output shape proposed:
RecognitionOutcome:
proposition: <feature_bundle | None>
epistemic_state: <one of the 14-state taxonomy>
normative_clearance: <CLEARED | VIOLATED | UNASSESSABLE | SUPPRESSED>
provenance: <structured record of source / spans / mechanism>
refusal_reason: <typed reason if epistemic state is refusal-class | None>
normative_detail: <violated boundary / commitment IDs | None>
The recognition spike commits to producing only a subset of states: EVIDENCED for admitted, CONTRADICTED / AMBIGUOUS / UNDETERMINED for refused. States like VERIFIED and DECODED are produced by downstream substrate work (cross-reference, replay), not by recognition itself.
This couples the two scopes without entangling them. The recognition spike can run with the starter taxonomy as a placeholder; the epistemic-state ADR finishes when the full taxonomy is ratified through teaching.
Smallest provable test (proposed)
Unlike the recognition spike, the epistemic-state spike is harder to isolate to a single binary acceptance because epistemic state is cross-cutting — it affects every subsystem.
Two candidate framings:
Framing 1 — Audit existing implicit states. Inventory every place in the current codebase where an implicit epistemic distinction is made (vault recall, ParseError, SolveError, SPECULATIVE marker, OOV refusal, verifier rejection, etc.) and map each to a starter-taxonomy state. Acceptance: every distinct existing case maps to exactly one starter state, or surfaces an EPISTEMIC_STATE_NEEDED gap that gets documented.
This is not a spike — it's an audit. It produces no new code. But it surfaces whether the starter taxonomy is sufficient before any new work is committed.
Status: COMPLETE across all six subsystems (2026-05-24).
- Math — 40 decision points across 9 files. 4 gaps ratified: EVIDENCED-INCOMPLETE, DECODED-UNARTICULATED, SCOPE_BOUNDARY, COMPUTATIONALLY_BOUNDED.
- Vault — 33 decision points across
vault/store.py+vault/decompose.py. 0 new states. 1 implementation debt:_status_admitscollapses FALSIFIED (→ CONTRADICTED) and SPECULATIVE (→ UNVERIFIED-POSSIBLE) into a single "not admissible" bucket without distinguishing them. 1 deferred candidate: COMPOSED_RECOGNITION (decomposed recall above floor) — currently covered adequately by UNVERIFIED-POSSIBLE; revisit if provenance needs to distinguish composed vs. asserted recall. - Language packs — 25 decision points across 6 files. 1 gap ratified: INFERRED (rule-derived from DECODED primitives, composite not curated). 4 implementation bugs identified (see Phase 2).
- Runtime packs — 28 decision points across 6 files. 0 new epistemic states. Structural finding: safety/ethics verdicts are a separate normative clearance axis, orthogonal to epistemic state. Normative axis ratified as companion (see section above).
- Teaching pipeline — 47 decision points across 12 files. 0 new states. All 47 mapped cleanly to the existing taxonomy. Key coverage: COMPUTATIONALLY_BOUNDED (contemplation recursion depth cap), AMBIGUOUS (mixed-polarity evidence reduction in
store.py), SCOPE_BOUNDARY (decomposition exhaustion, evaluative domain gate). 4 minor implementation debts: source-field-absent proposals have no explicit epistemic characterisation; identity override gate does not distinguish which layer (syntactic vs. geometric) fired; contradiction detection thresholds are implicit magic values; watched-metrics tuple inreplay.pylacks versioning. - Cognition pipeline — 42 decision points across 6 files. 0 new states. 1 EPISTEMIC_STATE_NEEDED case:
CognitiveTurnResult.refusal_reasonis a placeholder field whose materialisation site is deferred to ChatRuntime (ADR-0024 Phase 2 scope decision); until ChatRuntime populates it, the field is dead weight and the conditional fold intrace.pyhas no effect. 3 critical implementation debts: (1) cold-start PASSTHROUGH collapses three distinct conditions (no field_state, no vocab, no prompt_versor) into one indistinguishable outcome; (2)_should_mark_speculative()reflexive-probe heuristic can produce false positives on unrelated queries; (3) surface authority is resolved and discarded — the selected authority name is available only inSurfaceResolution, not inCognitiveTurnResult. States not covered by the pipeline's current code paths: COMPUTATIONALLY_BOUNDED (no search-budget exhaustion tracking), UNVERIFIED-NOVEL (new teaching proposals enter as SPECULATIVE, not UNVERIFIED-NOVEL). - Chat runtime — 47 decision points across 13 files. 0 new states. Taxonomy is sufficient for every decision point; the gaps are provenance gaps, not taxonomy gaps. 6 sites where an epistemic decision is made but the rationale is not carried: (1) pack-grounded surface dispatcher (
runtime.py:831–1012) does not record which sources were attempted or why each fell through; (2) discourse planner engagement (runtime.py:1047–1235) does not surface which of its multi-gates failed on a miss; (3) teaching corpus collision resolution (teaching_grounding.py:298–319) applies first-match-wins without recording whether a collision occurred; (4) config-driven surface shape (transitive / composed / single) does not carry why one config is preferred; (5) unified ingest timing (runtime.py:1492–1521, ADR-0090) does not track whether both ingest paths reach the same gate decision; (6) generation call (runtime.py:1644–1667) has 15+ control parameters with no conflict-detection signal. The grounding-source selector is the runtime's primary epistemic articulation point; all six gaps cluster around it.
Framing 2 — Spike on a single subsystem. Pick one subsystem (probably recognition, since the parallel scope is already underway) and run all its outputs through the starter taxonomy + provenance structure. Acceptance: every output of that subsystem carries a typed state and structured provenance; refusals carry typed reasons; the state assignments replay byte-identically.
This is a spike but it depends on the recognition spike being far enough along to have outputs to taxonomize.
Honest recommendation: Framing 1 first (audit, no code), then Framing 2 (spike, co-sequenced with recognition). The audit is a prerequisite for the spike because it validates whether the starter taxonomy needs revision before any subsystem commits to it.
Prerequisites
The audit (Framing 1) can begin immediately — no dependencies. It operates over existing code and ratified documents.
The spike (Framing 2) depends on the recognition spike being far enough along to produce outputs. The two can co-sequence: recognition produces RecognitionOutcome structures with state placeholders; the epistemic spike validates that the placeholders can be cleanly filled with the starter taxonomy and that provenance is captured throughout.
Integration into Engine A (full epistemic-state-aware reasoning across all subsystems) is gated on:
- The audit (Framing 1) confirming the starter taxonomy is sufficient or surfacing the gaps to address.
- The recognition spike succeeding.
- ADR-0144 (PropositionGraph from MathProblemGraph) — at which point the epistemic-state-aware propositions have somewhere to live in the engine.
Risks the spike must surface
-
The starter taxonomy may be too coarse. Risk is now closed. All six audits complete; taxonomy grew from 9 to 14 epistemic states (+ meta-state) and acquired a companion normative clearance axis. Teaching, cognition, and chat runtime audits produced zero new states. The remaining gaps are provenance and implementation debts, not taxonomy gaps. The vocabulary is stable.
-
Provenance overhead. Every state assignment carries structured provenance. For propositions handled in tight loops (vault recall, pack consultation), the overhead may be non-trivial. Need to measure before committing to provenance-on-every-assignment.
-
Cross-cutting concerns are hard to test in isolation. Epistemic state affects every subsystem; changes ripple. The two-framing approach (audit then subsystem-spike) is an attempt to control this, but the eventual ADR will need a deployment strategy that doesn't require turning the whole engine over at once.
-
Transition determinism is non-trivial. State A → State B must be caused by specific evidence. If two evidence updates arrive simultaneously and would push the proposition in different directions, the engine must have a deterministic resolution rule (not "first-write-wins"). The taxonomy doesn't yet specify this.
-
The recursive meta-state (EPISTEMIC_STATE_NEEDED) is itself a risk. It opens a path for the engine to expand its own vocabulary. That's the feature, but it's also a vector for taxonomy bloat if not carefully constrained. The teaching loop's review machinery is the intended brake, but the review criteria for new states needs explicit spec (not in this scope; deferred).
What the scope does NOT commit
- No states are finalized. The starter taxonomy is a candidate; the audit may reduce or expand it.
- No subsystem integration timeline. Sequenced against recognition and the lift program but no calendar commitments.
- No mechanism for state transitions across subsystems. Within a subsystem, transitions are defined; across subsystems (e.g., a proposition handed from recognition to verifier to vault), the transition machinery is its own scope question.
- No commitment on storage of states. Are states stored per- proposition? Per-session? In the vault? In a pack? Open.
- No commitment on serialization. The provenance record must be byte-deterministic if states are to replay; the format is deferred.
Open questions for follow-up scopes
- Cross-subsystem transition machinery. How does a proposition carry its state and provenance as it moves between subsystems?
- State storage layer. Where do states live? Same questions as the recognition scope's storage layer.
- Review criteria for new states. When the engine surfaces an EPISTEMIC_STATE_NEEDED gap, what does the teaching loop's review need to verify before ratifying?
- Lens-conditional states. An anchor lens can change how a proposition decodes; can it change the state the proposition is in? (Probably yes; how is non-trivial.)
- Identity / safety / ethics interaction.
Open.Resolved. Identity packs ground the epistemic axis (what counts as decoding). Safety and ethics verdicts live on the normative clearance axis (orthogonal to epistemic state). The two axes co-exist on every turn record. See the normative clearance axis section above.
Summary
The load-bearing question was whether a small extensible vocabulary of epistemic states, plus a companion normative clearance axis, is sufficient to unify the implicit distinctions CORE already makes across vault, packs, teaching, recognition, and verification — and whether provenance-on-every-assignment is feasible without overhead that breaks the engine's hot path.
All six subsystem audits are now complete (math, vault, language packs,
runtime packs, teaching pipeline, cognition pipeline, chat runtime).
The taxonomy is stable at 14 epistemic states (PERCEIVED, EVIDENCED,
EVIDENCED-INCOMPLETE, VERIFIED, DECODED, DECODED-UNARTICULATED,
INFERRED, UNVERIFIED-POSSIBLE, UNVERIFIED-NOVEL, CONTRADICTED, AMBIGUOUS,
UNDETERMINED, SCOPE_BOUNDARY, COMPUTATIONALLY_BOUNDED, plus the recursive
EPISTEMIC_STATE_NEEDED) and a 4-value normative clearance axis (CLEARED,
VIOLATED, UNASSESSABLE, SUPPRESSED) that is orthogonal to the epistemic
axis. No new states were required by any of the final three audits.
The remaining open work is implementation: carrying explicit epistemic
state at the grounding-source dispatcher in the chat runtime, resolving
the cold-start PASSTHROUGH ambiguity in the cognition pipeline, and
populating the normative_detail field on TurnEvent when clearance
is VIOLATED or SUPPRESSED.
Known implementation issues to address before Phase 3 integration (tracked separately as Phase 2):
evidence.py:mean_pair_score([])returns0.0, silently making an unmeasured case FALSIFIED rather than UNDETERMINEDevals/gsm8k_math/runner.py:RealizerErroron a verified trace is classified asoutcome="wrong"rather than DECODED-UNARTICULATEDlanguage_packs/domain_contract.py:present=False, valid=Falseon a missing manifest should bepresent=False, valid=True(UNDETERMINED, not a negative judgment);domain_id:unknownshould route to SCOPE_BOUNDARY rather than collapsing with structural errorsvault/store.py:_status_admits: FALSIFIED and SPECULATIVE entries should be explicitly distinguished as CONTRADICTED vs. UNVERIFIED-POSSIBLE
The eventual ADR makes the taxonomy first-class and provenance mandatory across all subsystems. That ADR is gated on the audit succeeding and on ADR-0144 (PropositionGraph integration) being in flight.
This document does not propose a decision. It defines the question.