The tier model is T0–T3 (four tiers). Earlier documentation used T1–T5; that was deprecated in v0.2. See facts for the canonical model.
The four tiers
T0 calls never hit the network. They’re approved locally in microseconds. Governance adds zero latency to read-only operations.
The escalation function
Every request has a base tier from its capability token. The gateway elevates the effective tier based on four dynamic Δ factors:Δ_human — human presence
Δ_human(r) = 2 if contextSnapshot.nearbyHumans == true, else 0.Δ_trust — CSML-driven trust score
Δ_trust(r) is driven by the CSML score for the current foundation-model backend.Δ_trust = 3ifCSML < 0.30Δ_trust = 2if0.30 ≤ CSML < 0.60Δ_trust = 1if0.60 ≤ CSML < 0.80Δ_trust = 0otherwise
Δ_env — environment uncertainty
Δ_env = 2ifenvironmentClass ∈ { "shared_human", "unknown" }Δ_env = 1ifsensorHealth == "degraded"Δ_env = 0otherwise
Δ_novelty — first-time tool use
Δ_novelty(r) = 1 if r.toolName ∉ recentAuditWindow(k=50), else 0.Worked example
A warehouse robot with base tier T1 proposes anav2.move_to_pose action.
1
Base tier
Token base: T1.
2
Δ_human
nearbyHumans = false → 0.3
Δ_trust
CSML for GPT-5.2 (the backend) reads 0.16 → 0.
4
Δ_env
environmentClass = indoor_structured, sensorHealth = nominal → 0.5
Δ_novelty
move_to_pose is in the recent audit window → 0.6
Effective tier
max(1, 0, 0, 0, 0) = 1. Auto-approved, audited.nearbyHumans = true. The executive layer issues a fresh request for the continued motion.
1
Base tier
T1.
2
Δ_human
nearbyHumans = true → 2.3
Effective tier
max(1, 2, ...) = 2. Requires review. Sponsor approval fires.Timeout semantics
On timeout: default-deny. The request transitions to FAILED and logs a
HUMAN_TIMEOUT event. Safety before availability.
Forbidden action sequences
In addition to tier checks, the Policy Gateway detects forbidden combinations that span tool boundaries:
These trip automatic T3 classification regardless of the underlying base tier.
Read next
CSML score
How Δ_trust is computed and calibrated against ROSClaw data.
Invariants
The six formal guarantees the tier model rests on.