Skip to main content

Vorion Integration

Vorion is the first validated implementation of the CAR specification. Its production deployment proves the CAR architecture works at scale.

Component Mapping

Vorion's 6 core components map directly to CAR's three-layer architecture:

Vorion ComponentCAR LayerPurpose
INTENTLayer 1Agent classification, goal declaration
BASISLayer 1+2Behavioral safety standard, compliance framework
ENFORCELayer 2Policy enforcement, capability gating
COGNIGATELayer 3Runtime governance, policy engine
PROOFLayer 2+3Attestation management, evidence chain
TRUST ENGINELayer 2Dynamic trust scoring (0–1000)

Trust Score Computation

Vorion's Trust Engine implements the CAR trust scoring formula:

// Certification weight mapping
const CERT_WEIGHTS = {
T0: 0.0, T1: 0.2, T2: 0.4, T3: 0.6,
T4: 0.8, T5: 0.9, T6: 0.95, T7: 1.0
};

function computeTrustScore(agent: CARAgent): number {
const certification = CERT_WEIGHTS[agent.certificationTier] * 300;
const behavior = agent.behaviorScore * 400; // 0.0 - 1.0
const context = agent.contextScore * 300; // 0.0 - 1.0

return Math.min(1000, Math.round(certification + behavior + context));
}

function effectiveAutonomy(certTier: number, runtimeTier: number): number {
return Math.min(certTier, runtimeTier);
}

Ceiling Enforcement

Vorion enforces regulatory and organizational trust ceilings:

┌─────────────────────────────────────────────┐
│ Regulatory Ceiling (EU AI Act: T4 max) │
│ ┌─────────────────────────────────────────┐ │
│ │ Organizational Ceiling (Policy: T5 max) │ │
│ │ ┌─────────────────────────────────────┐ │ │
│ │ │ Agent Trust Score: 842 (T5) │ │ │
│ │ │ │ │ │
│ │ │ Effective: MIN(T5, T5, T4) = T4 │ │ │
│ │ └─────────────────────────────────────┘ │ │
│ └─────────────────────────────────────────┘ │
└─────────────────────────────────────────────┘

Role Gates (Three-Layer Evaluation)

Before granting an agent a role, Vorion evaluates three gates:

GateLayerCheckOverride?
KernelCoreMinimum tier for requested levelNever
PolicyOrgOrganization-specific policiesAdmin only
BASISSafetyBehavioral safety requirementsSafety board
Agent requests L4 role
→ Kernel: T3+ required? ✅
→ Policy: Org allows L4 for this domain? ✅
→ BASIS: Behavioral safety threshold met? ✅
→ GRANTED

Hierarchical Context

Vorion implements 4-tier context hierarchy with hash chain integrity:

LevelContextExample
GlobalCross-org defaultsCAR spec minimums
RegistryPer-registry rulesAgentAnchor policies
OrganizationOrg-specific policiesVorion Risk LLC rules
AgentIndividual overridesAgent-specific constraints

Each level's configuration hashes its parent's config, creating tamper-evident chains.

Federated Presets

Trust scoring weights can be customized via a 3-tier derivation chain:

CAR Defaults → Registry Presets → Org Presets
│ │ │
Base Override Override
weights max delta max delta
±0.1 ±0.05

Human-Centric Design ("Ralph Wiggum" Standard)

Vorion implements CAR's human-centric design requirements:

Petnames

Agents get human-friendly names alongside their CAR strings.

Traffic Light System

Trust tiers map to familiar colors (red → yellow → green → blue → purple → cyan).

AI Nutrition Label

📍 Purpose: Helps plan events
⚙️ Can: Access calendar, search web, draft emails
✗ Cannot: Spend money, delete files, access HR data
⚠️ Limitation: May suggest outdated venue info
🔒 Trust: T4 Standard (score: 742)

Just-In-Time Permissions

Agents request elevated permissions at the moment they're needed, not upfront.