ΔDriftMap · Command lineage

Trust-aware lineage graph and lineage trust lock — Strategon → Command Center → Surface Panel.

Lineage trust lock · pass

Command convergence lineage is healthy evolution — current surface still expresses origin-layer intent.

Aggregate integrity 90 ≥ threshold 75 · enforcement idle

Trust-aware lineage graph

Edges encode transformation type, functional continuity (0–1), and drift status. Aggregate chain integrity: 90. Weighted risk (integrity gap × criticality): 0.

React Flow mini map

Trust lock

Lock ID
lock_command_convergence_lineage
Criticality
5 / 5
Mode
warn
Minimum integrity
75
Evaluation
Lineage integrity is within threshold.
Action
none

Protected assertions

  • Must aggregate trust and operational signals for command-relevant decisions.
  • Must frame decisions with enough context for human or policy validation.
  • Must initiate execution paths only when lineage integrity remains within the declared threshold.

Re-anchor prompt

Trace Surface Panel back to Strategon. Does the current implementation still preserve the original decision authority, orchestration role, and signal convergence intent?

GhostLog · live persistence

POST /api/lineage-trust/evaluate runs a continuity pre-check (stateless isolation), then writes lineage_trust_snapshot, lineage_integrity_transition, stateless_isolation_*, and lineage_rehydration_* events (nullable trustStateId) plus LineageIntegritySnapshot. Requires DB schema sync (prisma migrate / db push).

Client projection (legacy helper)

lineageDecisionToGhostLog — same shape for UI mocks; server persistence uses Prisma + richer transition metadata.

{
  "id": "ghost_lineage_COMMAND_CONVERGENCE_LINEAGE_1774877303122",
  "type": "lineage_trust_lock",
  "source": "ΔDriftMap",
  "lineageId": "COMMAND_CONVERGENCE_LINEAGE",
  "payload": {
    "lineageId": "COMMAND_CONVERGENCE_LINEAGE",
    "integrity": 90,
    "passed": true,
    "action": "none",
    "reason": "Lineage integrity is within threshold."
  },
  "createdAt": "2026-03-30T13:28:23.122Z"
}

Command launcher

  • cmd.renderLineageGraph()Renders graph of concept lineage with integrity-aware edges.
  • cmd.activateLineageTrustLock()Enables threshold-based lineage enforcement.
  • cmd.evaluateLineageIntegrity(lineageId)Computes current lineage integrity and logs result.
  • cmd.persistLineageTrustToGhostLog()POST /api/lineage-trust/evaluate — snapshots + lock/band transitions into real GhostLog.
  • cmd.reanchorLineage(lineageId)Prompts review of origin intent against current implementation.