DLP Specification
Part V: Human Interface Layer

§17 Decision Surfaces

Validated Projections (VPs). Plan Baseline, Condition Assessment, Prediction. Cache model. Materiality framework.

§17 Decision Surface Design

v2.0.0 · Locked · L1 · March 19, 2026

§17 Purpose

§13 specifies Policy Projection Surfaces — read-only governance documents rendered from substrate state. Policy projections reveal what the substrate enforces. This section specifies Decision Surfaces — interactive interfaces that present governance state requiring human action. Decision Surfaces reveal what requires resolution.

The infrastructure layer connecting raw substrate queries to actionable decision interfaces is the Validated Projection. A Validated Projection is a Derived truth object with structural enforcement: schema-validated, provenance-tracked, and automatically recomputed from source primitives. Validated Projections occupy the space between ad-hoc derived queries (ephemeral, no schema) and full primitives (independent lifecycle, state machine, events). They have fixed schemas, structural validation rules, recomputation triggers wired to source primitive event handlers, and provenance tracking. They do not have independent lifecycles, their own events, Authoritative or Declared truth status, or direct mutability.

Three Validated Projection types are registered: Plan Baseline, Condition Assessment, and Prediction. Together they compose the Decision Surface — the interface through which a human evaluates a governance condition, reviews predictions for each proposed action, and resolves the condition through a Decision primitive.

§17 Foundation

Decision Surfaces compose from Validated Projections to enable informed human action. Where Policy Projection Surfaces (§13) render what the substrate enforces as human-readable documents, Decision Surfaces present what requires human resolution as actionable interfaces. The two are complementary outputs of substrate state — one for comprehension, one for action.

§17 Governance

No governance authority distinct from lineage for this document.

§17 Substance

§17.1 The Decision Surface Principle

Table 17.1.1: Decision Surface vs. Policy Projection

DimensionPolicy Projection (§13)Decision Surface (§17)
PurposeRender governance state as human-readable documentsPresent governance conditions requiring human resolution
InteractionRead-only — projections may not add governanceInteractive — human selects disposition, creating primitives
OutputDocuments (authority matrices, SOPs, compliance checklists)Decision interfaces (condition + baseline + options + predictions)
TriggerScope selection (human or organizational unit defines the surface)Condition Assessment materialization (gap between reality and expectation detected)
ConsumersGovernance officers, auditors, regulators, organizational membersDecision-makers with authority over the condition's scope

Table 17.1.2: Protocol Layer Placement

Protocol LayerDecision Surface ContentExample
DLP-CoreVP truth type is Derived (§6) — not a fourth truth typeAll VP output enters with TruthType = Derived; actions taken based on VP output require human authority
DLP-World-ModelConservation law context — VPs preserve organizational symmetries through source primitive referencesA Plan Baseline preserves obligation invariance (§9) by tracing expected states to Commitment and Intent source primitives
ProtoLex SubstrateVP infrastructure: registered types, schemas, materialization engine, cache state model, disposition routingPlan Baseline materialization, Condition Assessment dimensional analysis, Prediction computation, disposition → primitive routing
Licensee ConfigurationVisualization, thresholds, staleness windows, display preferencesMateriality threshold mapping (L1–L4), valid_until windows by VP type, prediction confidence display format

§17.2 Validated Projection Contract

The VP contract specifies the schema and validation rules that all Validated Projections must satisfy. Every registered VP type extends this base contract with type-specific fields and validation logic.

Table 17.2.1: VP Required Schema Fields

FieldTypeRequirementDescription
projection_idIdentifierMUST be uniqueStable reference for this materialization
projection_typeEnumerationMUST be registered typeWhich VP schema applies
materialized_atTimestampMUST record when computedCache timestamp
materialized_byReference → EntityMUST record who/what triggeredSystem, agent, or human
versionIntegerMUST increment on recomputationCache version (monotonic)
valid_untilTimestampMUST define staleness boundaryWhen recomputation is required
source_refsArray[Reference]MUST list all source primitivesWhat data was used
derivation_methodValue (string)MUST describe computation logicHow the projection was built
confidenceNumber (0.0–1.0)MUST assess projection reliabilityComputed from source quality
statusEnumerationMUST track cache statecurrent, stale, recomputing, invalidated

Table 17.2.2: VP Required Provenance Fields

FieldTypeRequirementDescription
source_snapshotObjectMUST capture source state at materializationHash or version of each source primitive at computation time
assumptionsArray[String]MUST list computational assumptionsWhat was assumed during derivation
limitationsArray[String]SHOULD list known gapsWhat the projection does not cover
supersedes_refReference → ProjectionIf replacing previous materializationLink to prior version

Structural Validation

All Validated Projections are structurally valid only when:

  • projection_type is a registered type
  • Every reference in source_refs resolves to a valid primitive instance
  • confidence falls within the 0.0–1.0 range
  • valid_until is after materialized_at
  • status transitions follow the cache state model (§17.3)
  • source_snapshot contains a hash or version for every entry in source_refs

VP materialization is automatic. Actions taken based on a VP's output require human approval. This distinction preserves the epistemic boundary (§6.2): Derived truth does not require a human gate for creation, only for promotion or for governance acts taken on its basis.

SDK Constraints:

  • MUST: Enforce structural validation on every materialization before transitioning to current status.
  • MUST: Record source_snapshot capturing the state of every source primitive at materialization time.
  • MUST NOT: Serve a VP whose source_refs contain unresolvable references.
  • DESIGN SPACE: Whether provenance limitations are enforced as required or advisory is an implementation choice. The architecture requires the field to exist.

§17.3 VP Cache State Model

The cache state model governs materialization freshness — whether a cached VP can be served, needs recomputation, or requires human intervention. This is a cache state model, not a lifecycle state machine. Validated Projections have no independent lifecycle. Their states describe the relationship between materialized output and source data, not an epistemic trajectory.

The authoritative specification for states, transitions, guard conditions, and VP-type-specific behavior is v9/state-machines/vp-cache-state.md. This section summarizes the model for architectural context.

Table 17.3.1: Cache State Summary

StateEntry ConditionExit TransitionsHuman Intervention Required
CurrentMaterialized; valid_until not exceeded; source data unchanged→ Stale (time or event), → Invalidated (source basis broken)No
Stalevalid_until exceeded or source primitive event detected→ Recomputing (scheduled or demand), → Invalidated (escalation)No
RecomputingRecomputation enqueued or in progress→ Current (success), → Stale (transient failure), → Invalidated (source invalidated during processing)No
InvalidatedSource data changed in a way that breaks the derivation basis→ Recomputing (human approves re-materialization)Yes

Current is the only state from which a VP may be served without qualification. Stale indicates the derivation method is still sound but source data may have changed. Recomputing is transient. Invalidated means the derivation basis is broken — mechanical recomputation would produce formally valid but semantically wrong output.

Recomputation Triggers

Three categories, ordered by urgency:

Time-based. The valid_until window has elapsed. The scheduler transitions the VP to Stale and enqueues recomputation at normal priority.

Event-based. A source primitive state change is detected that affects the VP's derivation method. The VP transitions to Stale and recomputation is enqueued at high priority. Event-based triggers take precedence over time-based because they indicate actual source data change, not temporal drift.

Demand-based. A consumer accesses a VP while it is Stale. Recomputation is synchronous — the consumer waits. This is acceptable because VP recomputation is a query operation over existing primitives, not a long-running computation. If recomputation exceeds a configurable timeout, the system returns the prior version with a staleness warning and enqueues asynchronous recomputation.

Recomputation Invariants

Seven invariants constrain every recomputation operation regardless of trigger type.

IDInvariant
R1Recomputation MUST NOT change source data — read-only transaction on source primitives, write-only on the VP record
R2Recomputation MUST produce identical output given identical inputs — same source_snapshot + same derivation_method = same output
R3Recomputation MUST update provenance fields — materialized_at, source_snapshot, version, confidence, supersedes_ref
R4Recomputation MUST NOT require human approval — VP materialization is Derived truth (§6); human gates apply to actions based on the VP
R5Recomputation MUST increment version — version increments monotonically; prior version retained for audit
R6Recomputation MUST validate structural schema — output passes the VP's structural validation rules before transitioning to Current
R7Actions taken BASED ON the projection DO require human approval — disposition routing from Condition Assessment creates Decision primitives requiring human resolution

R1 preserves epistemic integrity (§5, B3): recomputation cannot promote Derived content to Declared or Authoritative. R4 is a consequence of B3: Derived truth does not require human gates for creation. R7 preserves the §6 epistemic boundary: projections inform decisions but do not make them.

Version Retention

Recomputation retains the current and prior versions. The supersedes_ref field links each version to its predecessor. Consumers querying "what did this VP say at time T?" can retrieve the version that was Current at that timestamp. This creates the provenance chain: Decision → VP (version N) → source primitives (snapshot).

SDK Constraints:

  • MUST: Retain current and prior VP versions for provenance audit.
  • MUST: Enforce all seven recomputation invariants (R1–R7) on every recomputation.
  • MUST NOT: Serve a VP in Invalidated state to consumers. Invalidated VPs are retained for audit but blocked from active use.
  • DESIGN SPACE: Archival policy for versions beyond current + prior is an implementation choice. The architecture requires at minimum two versions.

§17.4 Plan Baseline

Plan Baseline is a Validated Projection that materializes the expected-state trajectory for a subject — Intent, Entity, Commitment, or Account — over time. It answers: "What did we expect to be true at each point, and where did that expectation come from?"

Plan Baseline is the foundation of the Decision Surface stack. Without a baseline, Condition Assessment has no expectation to compare against, and Prediction has no reference trajectory to project from.

Table 17.4.1: Plan Baseline Schema (extends VP base)

FieldTypeRequirementDescription
subject_refReferenceMUST identify what baseline is forIntent, Entity, Commitment, or Account
subject_typeEnumerationMUST classify the subjectintent, entity, commitment, account
baseline_modeEnumerationMUST declare expectation sourceHow the baseline was established
expected_statesArray[Expected State]MUST contain at least oneTime-series of expected values, chronologically ordered

Each expected state entry contains: as_of (timestamp), expected_value (structure varies by subject_type), source_ref (which source record generated this expectation), confidence (0.0–1.0 for this specific point), and notes (contextual explanation).

Table 17.4.2: Baseline Mode Definitions

ModeSourceRequired FieldsConfidence Base
explicitDeclared artifact — someone committed to this plandeclared_by (→ Entity), declared_at (Timestamp), declaration_evidence_ref (→ Evidence)0.85
inferredReconstructed from Account/Evidence patternsderived_from (Array, ≥1), derivation_method (algorithm description), sample_size (≥1), sample_period (Duration)0.50
normativeDerived from standards or policystandard_ref (standard identifier), constraint_refs (Array → Constraint), interpretation_notes (SHOULD)0.75
comparativeDerived from cohort or peer datacohort_definition (selection criteria), cohort_size (≥1), cohort_source_ref (→ Evidence), similarity_score (SHOULD, 0.0–1.0)0.45

Confidence Computation

Base confidence is determined by mode. Adjustments refine it:

Inferred mode: sample_adjustment = min(sample_size / 8, 1.0) × 0.2 — more data increases confidence, capping at eight periods. recency_adjustment = decay(now() − most_recent_source.timestamp) — more recent data increases confidence. Final: base + sample_adjustment − recency_adjustment.

Comparative mode: cohort_adjustment = min(cohort_size / 10, 1.0) × 0.15 — larger cohorts increase confidence. similarity_adjustment = (similarity_score − 0.5) × 0.2 — higher similarity increases confidence. Final: base + cohort_adjustment + similarity_adjustment.

Explicit mode: staleness_penalty = decay(now() − declared_at, half_life = "P6M") — explicit plans degrade as time passes without reaffirmation. Final: base − staleness_penalty.

Normative mode: No adjustment — confidence reflects the standard's authority directly.

All confidence values are clamped to the 0.0–1.0 range.

Recomputation Triggers

Baseline ModeStaleness TriggerInvalidation TriggerRecomputation Notes
explicitSuccess criteria or commitment terms changedDeclaring entity's authority revokedRecomputes expected_states from updated criteria; confidence staleness penalty applies
inferredNew transaction within sample_periodNone — inferred baselines degrade gracefullyBatched at period end, not per-transaction; recalculates trailing statistics
normativeNo time-based expiry — event-driven onlyReferenced Constraint supersededInvalidates, not stales — new normative baseline requires human selection of replacement standard
comparativeCohort data updatedCohort definition invalidated (peer reclassified)Recomputes from updated cohort; invalidates if comparison group is no longer valid

Normative baseline invalidation on constraint supersession transitions to Invalidated, not Stale. The standard that defined the baseline no longer applies. A new normative baseline must be established against the replacement standard — this is a human judgment, not a mechanical recomputation.

SDK Constraints:

  • MUST: Enforce mode-specific required fields on materialization. A normative baseline without constraint_refs fails structural validation.
  • MUST: Compute confidence using the formula specified for each mode. Confidence values MUST NOT be manually assigned.
  • MUST NOT: Automatically recompute a normative baseline after constraint supersession. The VP enters Invalidated and awaits human review.
  • DESIGN SPACE: The valid_until window per baseline mode (explicit: 30–90 days, inferred: 7–30 days, comparative: 14–30 days) is configurable per substrate deployment.

§17.5 Condition Assessment

Condition Assessment is a Validated Projection that evaluates current state against a Plan Baseline. It answers: "How does reality compare to expectation, and what does the gap imply?"

Condition Assessment is the analytical core of the Decision Surface. It transforms the comparison between a Plan Baseline and current state into a structured seven-dimensional analysis that routes to specific governance actions through disposition.

Table 17.5.1: Condition Assessment Schema (extends VP base)

FieldTypeRequirementDescription
baseline_refReference → Plan BaselineMUST reference the baseline compared againstWhich expectation
baseline_modeEnumerationMUST propagate from baselineInherited — so routing knows the confidence context
current_state_refReference → Account or EvidenceMUST reference actual stateWhat reality looks like
assessment_dimensionsArray[Dimension Assessment]MUST contain at least oneThe dimensional analysis

Each dimension assessment entry contains: dimension (enumeration), value (enumeration), evidence_refs (Array → Evidence), and notes (contextual explanation).

Table 17.5.2: Seven Assessment Dimensions

DimensionQuestionValues
1. Condition Type (What)What kind of gap exists?gap — expected state not yet reached; overrun — exceeded expected bounds; overlap — roles/functions not separated; sequence_break — actions out of order; threshold_breach — value crossed defined boundary; staleness — data not refreshed within cadence; alignment — current state matches expectation
2. Causation (Why)Why does this condition exist?structural — organizational design; operational — day-to-day execution; external — outside forces; temporal — time passage (drift); capacity — resource/capability limitation; planning — original plan flawed or incomplete; unknown — not yet determined
3. Materiality (How Much)How significant is the condition?L1_informational — log only; L2_advisory — acknowledgment expected; L3_action_required — decision required; L4_critical — immediate response required
4. Permanence (How Fixed)Can the condition be changed?transitional — will self-correct without intervention; structural — requires deliberate intervention; permanent — cannot be changed, must be accommodated; unknown — not yet assessed
5. Controllability (By Whom)Who can address it?internal_authority — within org's decision authority; internal_operational — within org's operational capacity; external_dependent — requires external party action; inherent — built into the context, no one controls it; shared — requires coordinated action
6. Disposition Pathway (Then What)What governance action is appropriate?Nine dispositions — see §17.6
7. Trajectory (Where Heading)How is the condition trending?converging — gap closing; stable — gap holding; diverging — gap widening; accelerating — divergence rate increasing; oscillating — alternating between converging and diverging; insufficient_data — not enough history

The seven dimensions are ordered from descriptive to actionable. Dimensions 1–5 characterize the condition. Dimension 6 determines the governance response. Dimension 7 provides temporal context for urgency assessment. A Condition Assessment with condition_type = alignment and materiality = L1_informational typically routes to disposition = no_action — the system is operating as expected.

SDK Constraints:

  • MUST: Propagate baseline_mode from the referenced Plan Baseline. Routing logic uses baseline mode to weight confidence.
  • MUST: Require at least one assessment dimension per Condition Assessment.
  • MUST NOT: Auto-select disposition (Dimension 6) without presenting the full dimensional analysis to a human decision-maker.
  • DESIGN SPACE: Whether all seven dimensions are required or a subset is sufficient for a given Condition Assessment is an implementation choice. The architecture defines the vocabulary; profiles may define minimum dimension sets.

§17.6 Disposition Routing

Each disposition pathway creates specific primitive instances. Disposition routing is the bridge from assessment to governance action — the mechanism that converts a Condition Assessment's seventh dimension into concrete substrate operations.

Human authority resolves disposition. Every disposition routing is a governance act requiring human decision. The system presents dispositions as options with predicted outcomes (§17.7); the human selects. No auto-disposition exists in the architecture.

Table 17.6.1: Disposition → Primitive Routing

DispositionCreatesPrimitive TypeKey Fields
investigateWorkresearch typeTitle: "Investigate condition: {summary}"; acceptance criteria: root cause identified and documented; verification method: manual_review
re_evaluate_planBaseline recomputation + DecisionBaseline recompute trigger + selection type DecisionTriggers Plan Baseline recomputation; creates Decision on planning assumptions with options generated from assessment
compensateConstraint exception + compensating ConstraintException on violated ConstraintActivates compensating controls; creates exception with compensating_control_required = true
acknowledgeEvidence + scheduled Workattestation type Evidence + review WorkRecords acknowledgment; schedules review at next review cadence
escalateDecisionescalation type DecisionRouted via Authority chain; urgency mapped from materiality level
accept_riskLearning + Decisionweight_update type Learning + authorizing DecisionDocuments risk acceptance as Learning; REQUIRES Decision authorizing the acceptance — risk acceptance without explicit authority is not permitted
remediateWorktask type WorkCorrective action with acceptance criteria: condition resolved, re-assessment shows alignment; verification method: automated_test (re-run Condition Assessment)
deferScheduled recomputation + EvidenceFuture Condition Assessment schedule + attestation type EvidenceSchedules future re-assessment at specified deadline; records deferral attestation
no_actionAudit log entryNone — no primitive creationCondition aligned; logged for audit trail

Disposition-Materiality Alignment

Dispositions correlate with materiality levels but are not mechanically determined by them. An L4_critical condition with controllability = inherent may warrant accept_risk rather than remediate. An L1_informational condition with trajectory = accelerating may warrant investigate rather than no_action. The dimensional analysis provides the reasoning basis; the human provides the judgment.

SDK Constraints:

  • MUST: Create the specified primitive types for each selected disposition. A remediate disposition MUST produce a Work primitive with re-assessment criteria.
  • MUST: Require a Decision primitive for accept_risk disposition. Risk acceptance without explicit authority violates the epistemic boundary.
  • MUST NOT: Execute disposition routing without human selection. Disposition is a governance act.
  • DESIGN SPACE: Whether multiple dispositions can be selected for a single Condition Assessment (e.g., investigate + escalate simultaneously) is an implementation choice.

§17.7 Prediction

Prediction is a Validated Projection that models "what happens if we take this action" — projecting future state given a proposed disposition. Predictions are short-lived VPs with aggressive staleness windows (hours to days). Their confidence degrades rapidly with time.

Table 17.7.1: Prediction Schema (extends VP base)

FieldTypeRequirementDescription
subject_refReference → Condition AssessmentMUST reference the condition being acted onWhich condition this prediction addresses
predicted_statesArray[Predicted State]MUST contain at least oneTime-series of projected future values
if_actionDispositionMUST specify which disposition is assumedWhich action this prediction models
model_refReferenceMUST identify the prediction model usedProvenance for the prediction methodology

Each predicted state entry contains: as_of (future timestamp), predicted_value (projected state), confidence (0.0–1.0), and assumptions (what was assumed for this prediction point).

Investigability Chain

Every Prediction exposes a full investigability chain: prediction → model → assumptions → source data. A user seeing "If you remediate, we predict alignment by Q3 with 0.72 confidence" can drill into each link:

  • Prediction: What specific future states are projected, at what confidence
  • Model: Which prediction model was used, its track record, its limitations
  • Assumptions: What was assumed — which assumptions, if changed, would alter the prediction
  • Source data: The Condition Assessment, Plan Baseline, and underlying primitives that fed the model

The user can challenge any assumption and request an alternative prediction with modified parameters. The challenge produces a new Prediction VP, not a modification of the existing one.

Recomputation and Staleness

TriggerResponse
Referenced Condition Assessment recomputedMark Stale → enqueue recomputation
Referenced Condition Assessment invalidatedMark Invalidated (cascade) — prediction is baseless without valid condition
Prediction model updatedMark Stale → enqueue recomputation with new model version
Prediction model deprecatedMark Invalidated — derivation method no longer valid; human selects replacement model
valid_until exceededMark Stale — but consider whether re-prediction is useful; short-lived by design

SDK Constraints:

  • MUST: Expose the full investigability chain (prediction → model → assumptions → source data) in the Decision Surface rendering.
  • MUST: Record model_ref for every Prediction. Predictions without model provenance fail structural validation.
  • MUST NOT: Present Predictions without their confidence scores and assumption lists. Predictions displayed without epistemic context violate the Derived truth boundary.
  • DESIGN SPACE: Whether Predictions are pre-computed for all available dispositions or computed on demand when a user explores a disposition option is an implementation choice.

§17.8 Decision Surface Composition

The Decision Surface — what the user actually sees and acts on — composes from the three registered VP types into a unified interface. The composition model defines four components, each traceable to its source VP.

Table 17.8.1: Decision Surface Components

ComponentSourceWhat It Shows
The conditionCondition AssessmentWhat was found (condition_type), why it exists (causation), how significant (materiality), how fixed (permanence), who can address it (controllability), where it is heading (trajectory)
The baseline contextPlan BaselineWhat was expected (expected_states), how the expectation was established (baseline_mode), how confident the expectation is (confidence)
Proposed actionsDisposition routing (§17.6) + Prediction (§17.7)Each disposition as a selectable option, each with predicted outcome and confidence from Prediction VP
Investigability chainEvidence + source primitivesEvery claim traces to Evidence, every prediction to model + assumptions, every baseline to source data — user can drill into any link

Agent Participation

AI agents participate in Decision Surface composition through the Interpretation primitive (§4.6.3):

  • The agent proposes a recommendation with confidence level and reasoning chain
  • The agent provides alternatives with trade-off analysis for each disposition option
  • Agent recommendations enter the Decision Surface as Derived truth — flagged and reviewable, never presented as authoritative guidance
  • The human resolves; the agent assists

Agent participation follows the stakes-by-novelty routing matrix (§6.3). High-stakes, high-novelty conditions route agent recommendations through expert interpretation review. The rubber-stamp detection invariant applies: a Decision that adopts an agent recommendation without evidence of human review is rejected.

Composition Integrity

The Decision Surface is a composed view, not a persistent object. It is materialized on demand from the current versions of its component VPs. If any component VP transitions to Stale or Invalidated between surface composition and human resolution, the surface MUST re-render with updated components before the Decision primitive is created. A Decision primitive records the specific VP versions (projection_id + version) that were Current at resolution time, creating the audit provenance: Decision → VP versions → source primitive snapshots.

SDK Constraints:

  • MUST: Record the VP version references (projection_id + version for each component) in the Decision primitive created from a Decision Surface resolution.
  • MUST: Re-render the Decision Surface if any component VP state changes before human resolution.
  • MUST: Flag agent recommendations as Derived truth with visible attribution in the Decision Surface.
  • MUST NOT: Allow Decision creation from a surface whose component VPs include any in Invalidated state.
  • DESIGN SPACE: Visual layout, interaction patterns, and rendering format for Decision Surface components are implementation choices. The architecture specifies the composition model and integrity requirements, not the presentation.

§17.9 VP Registration and Cascade Rules

Registration Criteria

A concept qualifies as a Validated Projection — rather than a full primitive or a raw derived query — when it satisfies five criteria derived from the Concept Stress Testing Protocol (§4.2).

Table 17.9.1: VP Registration Criteria

CriterionTestPass Condition
CSTP RemovalSystem degrades but does not break without the VPRemoval loses structured analysis but does not eliminate a governance question
CSTP MergerNo clean merger with existing primitivesComposition is possible but loses critical metadata
CSTP SufficiencyComposable from existing primitivesFully derivable from source primitives but requires schema enforcement for downstream routing or trust
Critical MetadataLost metadata is critical for routing or trust assessmentConfidence propagation, baseline mode, dimensional analysis, or provenance tracking would be lost without schema enforcement
No Independent LifecycleThe concept does not transition states independently of its sourcesVP reflects source primitive state; it does not have its own lifecycle events

Concepts that fail these criteria in one direction or the other are not VPs. If the concept has an independent lifecycle, generates its own events, or cannot be recomputed from source primitives, it is a primitive candidate. If no schema enforcement is needed, provenance tracking is unnecessary, and confidence labeling adds no value, it remains a raw derived query.

Table 17.9.2: Registered VP Types

TypePurposeSource PrimitivesFirst Use
plan_baselineExpected-state trajectory over timeIntent, Account, Evidence, Commitment, ConstraintCondition Assessment baseline
condition_assessmentReality vs. expectation dimensional analysisPlan Baseline, Account, Constraint, LearningDecision Surface input
predictionProjected future state given proposed actionCondition Assessment, Account, Learning (historical patterns)Decision option evaluation

Invalidation Cascade

The three registered VP types form a directed dependency chain:

Plan Baseline → Condition Assessment → Prediction

Invalidation cascades through this chain. Staleness does not.

Table 17.9.3: VP-Type Invalidation Cascade

Source VPAffected VPCascade Rule
Plan Baseline → InvalidatedCondition Assessment referencing this baselineInvalidated (cascade is immediate and automatic)
Condition Assessment → InvalidatedPrediction referencing this assessmentInvalidated (cascade is immediate and automatic)
Plan Baseline → StaleCondition Assessment referencing this baselineNOT automatically Stale — Condition Assessment evaluates its own staleness independently
Condition Assessment → StalePrediction referencing this assessmentNOT automatically Stale — Prediction evaluates its own staleness independently

The asymmetry between invalidation and staleness cascade is architectural, not incidental. Invalidation means the derivation basis is broken — a downstream VP whose upstream source is invalidated is definitionally unsound. Serving it would violate provenance integrity. Staleness means the output may need refresh — the downstream VP's own event handlers evaluate whether the upstream staleness affects its derivation. Cascading staleness would create recomputation storms: a single source primitive change would trigger recomputation of every VP in the chain, most of which may be unaffected.

Future Candidates

Four VP candidates are identified but not registered. Each requires CSTP analysis before registration, dependent on schema alignment work confirming source primitive query patterns.

CandidatePurposeCSTP Status
Compliance PostureAggregate view across all active ConstraintsNot tested — deferred to Phase 7+
Capacity ForecastProjected capacity given current allocations and commitmentsNot tested — deferred to Phase 7+
Authority MapMaterialized view of who-can-do-what given delegation chainsNot tested — deferred to Phase 7+
Decision ImpactProjected downstream effects of a pending DecisionNot tested — deferred to Phase 7+

SDK Constraints:

  • MUST: Enforce invalidation cascade immediately when a VP enters Invalidated state. The system does not wait for human review of the upstream VP before invalidating downstream VPs.
  • MUST: Evaluate staleness independently per VP — no automatic staleness cascade.
  • MUST NOT: Register new VP types without completing the five-criterion registration analysis.
  • DESIGN SPACE: The registration process for future VP types — whether it requires an architecture decision record, a CSTP session, or both — is a governance choice.

§17 Boundaries

Decision Surfaces are interactive interfaces for condition assessment and disposition selection. They do not create governance records directly; disposition routing creates records. Validated Projections carry Derived truth type and do not require human gates for materialization. Actions based on Decision Surfaces require human authority.

§17 Positions

Locked positions:

  1. Validated Projections are derived objects with fixed schemas, structural validation, and provenance tracking; they occupy the space between ad-hoc queries and full primitives.
  2. Three VP types are registered: Plan Baseline, Condition Assessment, Prediction; they compose into the Decision Surface.
  3. VP materialization is automatic and carries Derived truth type; actions based on VPs require human approval.
  4. Plan Baselines derive from four modes (explicit, inferred, normative, comparative) with mode-specific confidence formulas.
  5. Condition Assessment applies seven dimensions to analyze reality-expectation gaps with actionable routing.
  6. Disposition routing supports nine dispositions with primitive creation; risk acceptance requires explicit Decision authority.
  7. Prediction exposes full investigability chains and allows assumption-based alternatives.
  8. Decision Surfaces materialize on demand from current VP versions; component state changes re-render before primitive creation.
  9. Invalidation cascades immediately through VP dependency chain (Plan Baseline → Condition Assessment → Prediction); staleness does not cascade.
  10. VP versions are retained for audit provenance; Decisions record specific VP versions (projection_id + version) that were Current at resolution time.

§17 Lineage

Version history:

  • v2.0.0 (2026-03-19): Locked specification with three registered VP types (Plan Baseline, Condition Assessment, Prediction), VP contract with base schema and provenance fields, four-state cache state model, seven recomputation invariants, Plan Baseline with four modes and mode-specific confidence, Condition Assessment with seven dimensions, Disposition routing with nine dispositions, Prediction with investigability chains, Decision Surface composition with four components, agent participation framework, VP registration criteria, and invalidation cascade rules.

Provenance:

This section defines Validated Projections as derived objects enabling Decision Surfaces — the interactive interfaces through which humans evaluate governance conditions and resolve them through Decisions. It specifies the VP contract, cache state model, three registered types, disposition routing, and cascade rules. It preserves epistemic boundaries: VP materialization requires no human gate; actions based on VPs require human authority.

§17 Commitments

SDK MUST constraints:

  • MUST enforce structural validation on every VP materialization before transitioning to current status.
  • MUST record source_snapshot capturing the state of every source primitive at materialization time.
  • MUST NOT serve VPs in Invalidated state to consumers.
  • MUST retain current and prior VP versions for provenance audit.
  • MUST enforce all seven recomputation invariants (R1–R7) on every recomputation.
  • MUST implement four-state cache state model: Current, Stale, Recomputing, Invalidated.
  • MUST support time-based, event-based, and demand-based recomputation triggers.
  • MUST implement Plan Baseline with four modes (explicit, inferred, normative, comparative) with mode-specific confidence formulas.
  • MUST compute Plan Baseline confidence using mode-specific formulas; confidence values MUST NOT be manually assigned.
  • MUST NOT automatically recompute normative baselines after constraint supersession; the VP enters Invalidated and awaits human review.
  • MUST implement Condition Assessment with seven assessment dimensions covering condition type, causation, materiality, permanence, controllability, disposition, and trajectory.
  • MUST propagate baseline_mode from referenced Plan Baseline to Condition Assessment.
  • MUST NOT auto-select disposition without presenting full dimensional analysis to human decision-maker.
  • MUST implement nine dispositions with specified primitive creation rules for each.
  • MUST require explicit Decision primitive for accept_risk disposition.
  • MUST NOT execute disposition routing without human selection.
  • MUST implement Prediction VP with if_action (disposition), predicted_states, and model_ref.
  • MUST expose full investigability chain (prediction → model → assumptions → source data).
  • MUST NOT present Predictions without confidence scores and assumption lists.
  • MUST implement Decision Surface composition from three VP component types.
  • MUST record VP version references (projection_id + version for each component) in the Decision primitive created from surface resolution.
  • MUST re-render Decision Surface if any component VP state changes before human resolution.
  • MUST flag agent recommendations as Derived truth with visible attribution.
  • MUST NOT allow Decision creation from a surface whose component VPs include any in Invalidated state.
  • MUST enforce invalidation cascade immediately through VP dependency chain (Plan Baseline → Condition Assessment → Prediction).
  • MUST evaluate staleness independently per VP; no automatic staleness cascade.
  • MUST NOT register new VP types without completing five-criterion registration analysis.

§17 Coverage

This section provides complete coverage of:

  • Decision Surface purpose and definition as interactive interfaces for governance conditions.
  • Validated Projection concept with fixed schemas, structural validation, and provenance tracking.
  • VP contract with 10 required schema fields and 4 provenance fields.
  • Structural validation rules covering projection_type, source_refs resolution, confidence range, timeline validity, status transitions, and source_snapshot completeness.
  • VP materialization and action distinction: materialization requires no human gate; actions based on VPs require human approval.
  • Four-state cache state model (Current, Stale, Recomputing, Invalidated) with entry conditions, exit transitions, and human intervention requirements.
  • Three recomputation trigger types: time-based, event-based, demand-based with urgency ordering.
  • Seven recomputation invariants (R1–R7) covering read-only transactions, deterministic output, provenance updates, no human gates, version increments, structural validation, and human approval for actions.
  • Version retention with provenance chain: Decision → VP (version N) → source primitives (snapshot).
  • Plan Baseline schema covering subject reference and type, baseline mode, and expected states.
  • Four baseline modes (explicit, inferred, normative, comparative) with required fields and confidence bases.
  • Mode-specific confidence computation formulas with adjustments and clamping.
  • Plan Baseline recomputation triggers by mode with staleness and invalidation distinctions.
  • Condition Assessment schema with baseline reference, baseline mode propagation, current state reference, and assessment dimensions.
  • Seven assessment dimensions covering condition type, causation, materiality, permanence, controllability, disposition pathway, and trajectory.
  • Disposition routing with nine dispositions (investigate, re_evaluate_plan, compensate, acknowledge, escalate, accept_risk, remediate, defer, no_action) and primitive creation rules.
  • Disposition-materiality alignment with human judgment preservation.
  • Prediction schema with subject reference, predicted states, disposition assumption, and model reference.
  • Investigability chain: prediction → model → assumptions → source data with assumption-based alternative predictions.
  • Prediction recomputation and staleness triggers with cascading invalidation from referenced Condition Assessment.
  • Decision Surface composition from four component types: condition, baseline context, proposed actions, investigability chain.
  • Agent participation through Interpretation primitive with recommendations flagged as Derived truth.
  • Stakes-by-novelty routing matrix for agent recommendations.
  • Rubber-stamp detection invariant rejecting Decisions without evidence of human review.
  • Decision Surface composition integrity: on-demand materialization, re-rendering on VP state changes, VP version recording in Decision primitives.
  • VP registration criteria: CSTP removal, merger, sufficiency, critical metadata, no independent lifecycle.
  • Three registered VP types with purpose, source primitives, and first use.
  • Invalidation cascade rules with asymmetry between invalidation (immediate, automatic) and staleness (independent evaluation).
  • Four future VP candidates (Compliance Posture, Capacity Forecast, Authority Map, Decision Impact) with CSTP status.

Completeness is achieved. All Validated Projection types, schemas, state models, composition rules, registration criteria, and cascade semantics are fully specified.