Real World Atlas

Research note // 003

Category

Failure recovery /
Physical AI /
Autonomous systems /
Real-world execution

Status

Frontier research

Research origin

Milan, Italy
45.4642° N, 9.1900° E

Plan // valid

Execution // started

Expected state ≠ observed state

Realitydoesn't throwexceptions.

What happens
when the physical world
refuses the plan?

Software can retry. Physical systems collide with a harder problem.

  • Objects move.
  • Doors stay closed.
  • Humans change their minds.
  • Providers fail.
  • Roads close.
  • Prices change.
  • Machines lose access.
  • Sensors misunderstand.

Reality does not guarantee that the world still matches the plan. Nothing raises a structured error. The gap simply exists, and something has to notice it.

AI can plan.

Machines can act.

Reality gets the final vote.

01

The pipeline is a lie

The conventional model

  • Intent

  • ↓ Plan

  • ↓ Action

  • ↓ Outcome

Insufficient // assumes the world holds still

Real-world execution

  1. Intent

  2. Plan

  3. Act

  4. Observe

  5. Compare

  6. Replan

  7. Act again

  8. Verify

↺ returns to observe

Real-world execution

is not a pipeline.

It is a loop.

Digital workflows are often modelled as deterministic sequences: each step completes, the next begins. Physical environments are not deterministic. Between the moment a plan is formed and the moment it is executed, the world has already moved.

So the system must continuously compare what it expected with what actually happened. Only then can execution meaningfully continue.

// System observation 031

Reality is a moving target.

02

When the world changes

Intent // "Take me to the airport."

The system plans a pickup, assigns a vehicle, computes a route, commits to an arrival time. Every element of that plan is a claim about a world that has not happened yet.

The plan

01Pickup
02Vehicle
03Route
04Arrival time

Reality intervenes

  • 01

    Driver cancelled

  • 02

    Road closed

  • 03

    Vehicle unavailable

  • 04

    Passenger not at pickup

  • 05

    Flight time changed

  • 06

    Payment failed

Execution status

  1. 01Plan // valid
  2. 02Execution // degraded
  3. 03Reality change detected
  4. 04Recovery required

The intent

did not change.

The world did.

Service robot arm paused in front of a closed steel service door in a dark corridor, a dropped glass shattered on the floor

The plan was valid. The door was not open.

Atoms
remember.

Recovery plate // physical consequence

Physical failure does not roll back. It leaves state behind.

03

Software failure vs physical failure

Digital failure

  • API timeout

    Retry

  • Bad response

    Regenerate

  • Process failed

    Restart

  • Database state

    Roll back

Physical failure

  • Glass dropped

    Broken

  • Vehicle departed

    Cannot rewind

  • Food prepared

    Resources consumed

  • Door opened

    Access already happened

  • Human left waiting

    Time lost

  • Package delivered incorrectly

    Physical recovery required

Bits can often

be restored.

Atoms remember what happened.

This is not a philosophical claim. It is an operational one: a physical action consumes time, energy, materials, access and human patience. Some of those can be repeated. None of them can be un-spent.

// Reality 036

Physical action has memory.

04

Failure recovery is intelligence

The real test

is not the plan.

It is the recovery.

When execution diverges, a physical system has to do a sequence of things that has nothing to do with the original task: detect the failure, understand what changed, estimate the remaining options, decide whether to retry, replan, switch executor, request human intervention or change the constraints — and then verify the new outcome.

Recovery architecture // conceptual

  1. Failure detected

    Expected state ≠ observed state

  2. State reassessment

    What is actually true now

  3. Can the original plan continue?

    Yes

    Retry / adapt

    No

    Replan

  4. Can the machine recover autonomously?

    Yes

    Execute new path

    No

    Escalate

  5. Escalation target

    Human / provider / alternative machine

  6. New execution path

    Same intended outcome

  7. Verify

    Confirm the outcome, not the attempt

// Thesis 039

Recovery is not an edge case.
In the real world,
it is part of execution.

05

The exception is the product

The demo

shows the happy path.

Deployment sells the exceptions.

A successful prototype proves that a machine can complete a task. That is a real and hard achievement. But an infrastructure system has to answer a second question that a demo never asks: what happens when it cannot?

The wrong question

Did the executor fail?

The infrastructure question

Did the outcome fail?

06

Executor substitution

The executor can fail.

The intent doesn't have to.

Human intent

Primary executor // Robot

Failure

01

Alternative robot

02

Autonomous machine

03

API

04

Human provider

05

Remote operator

06

Service provider

Outcome completed

A resilient real-world system should be able to preserve the intended outcome even when the original executor becomes unavailable. That requires the abstraction to sit above any single machine: the system commits to an outcome, and treats the executor as a replaceable resource.

Outcome first.
Executor second.

// Atlas thesis 043

A reliable robot is useful.
A reliable outcome is infrastructure.

07

Human-in-the-loop as recovery infrastructure

Research note 001 examined the human as the source of authority: the party who grants permission to act. There is a second role, and it appears only after something goes wrong.

Human as authority

  • Approval
  • Authorization
  • Supervision

Human as recovery infrastructure

  • Context interpretation
  • Exception handling
  • Alternative path creation
  • Physical intervention

Recovery path // access

01Robot failed to access building
02Remote human verifies context
03Human contacts property
04New access path created
05Machine continues execution

Recovery path // substitution

01Autonomous execution unavailable
02Human provider takes over
03Same intended outcome completed

Humans may not disappear

from Physical AI.

They may move to the exception layer.

08

The world has no API contract

The physical world does not return clean API responses.

Software defines

  • Input
  • Output
  • Schema
  • Error
  • Timeout

The real world provides

  • Ambiguity
  • Delay
  • Weather
  • Humans
  • Friction
  • Physics
  • Uncertainty
  • Non-determinism

The world

does not violate the specification.

The world is the specification.

Atlas thesis // interpretation, not a sourced scientific claim

Which means any infrastructure operating in reality has to be built around three things that software systems can often omit: observation, adaptation and verification.

09

Closed-loop execution

Open loop

  • Plan
  • → Action

No feedback // no knowledge of the result

Closed loop

  • Plan
  • ↓ Action
  • ↓ Observe
  • ↓ Compare
  • ↓ Adapt

↺ observe · compare · adapt

The difference

between action and execution

is feedback.

A physical system needs continuous state awareness, because the only evidence that something happened is an observation of the world after it happened.

No verification.
No verified outcome.

10

Verification

When is

the task actually done?

  • The agent sent the request.Not done.
  • The provider accepted.Not done.
  • The robot started moving.Not done.
  • The autonomous vehicle arrived.Maybe.
  • The intended human reached the destination.Done.

Activity

is not outcome.

Execution lifecycle

  1. Task initiatednot done
  2. Task acceptednot done
  3. Task executingnot done
  4. Task deliverednot done
  5. Outcome verified✓ done
11

What research is trying to solve

A growing body of robotics research treats the divergence between expected and observed state as the central problem rather than a nuisance. Below, each entry separates what a source demonstrates, what it does not claim, and our interpretation. Nothing outside the first column is evidence.

The common thread: current work is strongest at detecting that expected state ≠ observed state, and weakest at deciding what the system owes the human once that is true.

12

The recovery stack

Real-world recovery layer // conceptual architecture

  1. Intent

    What the human wants

  2. Expected outcome

    The measurable definition of done

  3. Plan

    A claim about a future world

  4. Execution

    Matter changes state

  5. Observation

    What is actually true now

  6. State difference detection

    Expected ≠ observed

  7. Failure classification

    What kind of failure this is

    TransientEnvironmentalExecutorAccessHumanCommercial
  8. Recovery policy

    What the system owes the outcome

  9. Recovery action

    Replan / retry / switch executor / escalate

    MachineHumanProviderAlternative machine
  10. New execution

    Same intent, different path

  11. Verification

    Confirm reality, not activity

  12. Outcome

    The intent survived

Recovery primitives

  • 01

    Retry

  • 02

    Replan

  • 03

    Reroute

  • 04

    Reassign

  • 05

    Escalate

  • 06

    Switch executor

  • 07

    Change constraint

  • 08

    Ask human

  • 09

    Abort safely

  • 10

    Verify again

Our read

// Real World Atlas — interpretation, not sourced finding

Physical AI is usually discussed in terms of capability. Can the robot walk? Can it grasp? Can the vehicle drive? Can the agent plan? Those questions matter, and the progress behind them is real.

But infrastructure becomes valuable at a different moment: when capability survives contact with reality.

Can the system preserve the outcome when the original plan no longer works?

A robot may fail.

A provider may fail.

An API may fail.

A human may fail.

The execution layer must not confuse
executor failure
with outcome failure.

14

The first trilogy

  1. 001 / Authority

    Who gives AI permission to act?

  2. 002 / Orchestration

    If atoms become bits, what becomes the operating system?

  3. 003 / Reality

    What happens when the world refuses the plan?

May I act?

How do I act?

What do I do when action fails?

Authority.

Orchestration.

Recovery.

Three infrastructure problems between intelligence and reality.

// Atlas thesis 003

AI can plan.

Machines can act.

Reality gets the final vote.

The future of Physical AI may belong not to systems that never fail, but to systems that know what to do next.

Execution is not complete
when something acts.
It is complete
when the intended outcome survives reality.

// Real World Atlas

// Research note 003

// Milan, Italy

// Reality observed

//

Source architecture

Section 11 is source-derived. Every other section — the loop, the recovery stack, executor substitution and the Atlas theses — is our framing, and is not attributed to any of the researchers or organisations below. No claim on this page states that a cited work solves general real-world recovery.

Research finding

Traceable to the peer-reviewed or first-party material listed above.

Real World Atlas interpretation

Our question, our framing. Never presented as evidence.

Publication record

Real World Atlas Research · Published 2026-08-19 · Modified 2026-08-19 · Milan, Italy

//

Related research

Next signal // Research note 004

When does a robot become economically inevitable?

Cost curves, utilization, reliability, labor economics and Physical AI deployment.

[ Coming next ]

// Milan, Italy

// Real World Atlas

// Observation continues