Platform · LoxOS

The runtime that
verifies before it obeys.

LoxOS is the on-robot runtime. It boots signed builds, verifies every manifest against its Robinhood Chain anchor before flashing, and reports fleet health in real time. If the signature doesn't check out, the robot doesn't run it.

signatures per build
0.25sanchor verification
64/64typical wave health
1-callfleet rollback

Chain-verified boot

Every build manifest is signed by its author and anchored on-chain. Units fetch the anchor and verify both before a single byte flashes. Supply-chain attacks bounce.

Staged OTA

Rollouts ship in waves — 25% of the fleet at a time by default. Health checks gate each wave; a degraded wave halts the rollout automatically.

Instant rollback

abortRollout() is one call. Units revert to the last healthy manifest from their local A/B slot — no truck rolls, no bricked hardware.

Skill sandboxing

Community skills run in capability-scoped sandboxes. A navigation skill can read LiDAR; it cannot touch the payment keys or the OTA slot.

Fleet telemetry

Heartbeats, task metrics and anomaly flags stream to your dashboard. unitsHealthy/unitsTotal isn't a guess — it's a live number you can query from the SDK.

Keys stay on-robot

Unit identity keys live in the secure element and never leave the device. Signing happens locally; the chain only ever sees proofs.

loxos — ota status
$ lox deploy status warehouse-eu-1
manifest sha256:9f41…c2aa · anchor block #8,401,551 ✓
wave 1/4 · 16/16 healthy ✓
wave 2/4 · 16/16 healthy ✓
wave 3/4 · rolling · 11/16 flashed
fleet: 43/64 on 2.2.0 · 0 degraded

Ship your first rollout.

Sign a manifest and stage it across a fleet with two SDK calls. Abort is always one call away.

Read the docs