Skip to main content

Certification & Trust Tiers

CAR defines two distinct tier systems, each with 8 levels (T0–T7), that work together to determine an agent's effective autonomy.

Dual-Tier Architecture

SystemScopeChanges WhenDetermines
Certification TierExternal attestation statusRe-certification, auditWhat agent could do
Runtime TierDeployment-specific autonomyContinuously (per-action)What agent may do now
Effective Autonomy = MIN(Certification_Tier, Runtime_Tier)

A T6-certified agent deployed in a T3-rated context operates at T3.

Certification Tiers

External, point-in-time assessment by a certification authority.

TierNameScoreColorDescription
T0Sandbox0–199StoneNo external verification, testing only
T1Observed200–349RedIdentity registered, behavior monitored
T2Provisional350–499OrangeInitial capabilities verified
T3Monitored500–649YellowContinuous monitoring active
T4Standard650–799GreenStandard certification achieved
T5Trusted800–875BlueFull trust established
T6Certified876–950PurpleThird-party audit completed
T7Autonomous951–1000CyanHighest assurance level

Runtime Tiers

Continuous, context-aware trust evaluation by the Vorion Trust Engine.

Same names and score ranges as Certification Tiers, but computed dynamically:

Runtime Score = (Certification × 0.3) + (Behavior History × 0.4) + (Context × 0.3)

Scoring Components

ComponentWeightSources
Certification30%CAR certification tier, attestation status
Behavior History40%Success rate, policy violations, drift events
Context30%Deployment environment, regulatory ceiling, org policy

Tier Transitions

Score ↑ (good behavior over time) → Tier promotion
Score ↓ (violations, drift, anomaly) → Tier demotion
Revocation event → Immediate drop to T0

Regulatory Ceilings

Compliance frameworks impose maximum trust scores:

FrameworkMax ScoreMax TierRetention
EU AI Act699T47 years
ISO 42001799T45 years
NIST AI RMF899T55 years

An agent in an EU AI Act-regulated context can never exceed T4 regardless of its certification.

Tier-Based Permissions

TierMax LevelDelegationKey Privileges
T0–T1L2NoneRead-only + advisory
T2L3NoneSupervised execution
T3L4Depth ≤ 2Autonomous within bounds
T4L5Depth ≤ 2Expanded scope
T5–T6L6Depth ≤ 4Agent spawning
T7L7Depth ≤ 8Sovereign authority

Trust Score API

const client = new CARClient({ endpoint: 'https://api.agentanchor.io' });

// Get current trust evaluation
const trust = await client.getTrustScore('a3i.vorion.banquet-advisor:FHC-L3@1.2.0');

console.log(trust);
// {
// score: 742,
// tier: 4,
// tierName: 'Standard',
// components: {
// certification: 0.8, // T5 certified
// behavior: 0.72, // Good history
// context: 0.65 // Standard deployment
// },
// ceiling: { framework: 'NIST', maxScore: 899 },
// evaluatedAt: '2026-02-08T12:00:00Z'
// }

Gaming Detection

The CAR specification includes anti-gaming measures:

  • Sudden score jumps trigger manual review
  • Oscillating behavior (good/bad cycles) limits maximum achievable tier
  • Context switching (rapid environment changes) resets behavior scoring
  • Provenance modifiers affect starting trust for cloned/imported agents