Decision flow
Click a node for its detail. Pre-loaded scenario: KYC verification with risk-tier escalation.
flowchart TD A[Proposed action
actor: kyc_triage_001
capability: kyc.verify]:::start B{Admissibility
checked_dimensions}:::node C{Authority Finality
path discovery}:::node D{Meaning Continuity
score & drift}:::node E{Risk & Assurance}:::node F{Required gates}:::node G[allow
policy_allow_default]:::ok H[require_human_review
assurance_below_minimum]:::warn I[deny
risk_threshold_exceeded]:::bad J[quarantine
external_export_blocked]:::bad K[require_reconfirmation
principal_reconfirmation_required]:::warn L[Emit audit event &
compose evidence pack]:::end_ A --> B B -->|admit| C B -->|deny| I C -->|in_force| D D -->|preserved| E D -->|drift| K E -->|ok| F E -->|low| H F -->|satisfied| G F -->|gate_block| J G --> L H --> L I --> L J --> L K --> L classDef start fill:#1a1f33,stroke:#22d3ee,stroke-width:2px,color:#e7eaf3 classDef node fill:#1a1f33,stroke:#3a4366,color:#e7eaf3 classDef ok fill:#0f3a25,stroke:#4ade80,color:#e7eaf3 classDef warn fill:#3a2f0f,stroke:#fbbf24,color:#e7eaf3 classDef bad fill:#3a1414,stroke:#f87171,color:#e7eaf3 classDef end_ fill:#1a1f33,stroke:#a78bfa,color:#e7eaf3
Node detail
Admissibility
First gate. Verifies the action is decidable: actor & principal resolved, capability known, prohibited-class check, evidence ready, jurisdiction supported. See public/vocabulary/action-admissibility.md.
Authority Finality
Resolves the in-force authority path from actor to principal. SLA: in-force authorities locatable in <200 ms.
Meaning Continuity
Scores meaning preservation across handoffs; routes to reconfirmation on material drift. See public/vocabulary/meaning-continuity.md.
Risk & Assurance
Compares assurance level to capability minimum and risk threshold to action class.
Required gates
Honours required_gates on the entity authority record (e.g. payment_execute, external_send).