Durable state is the operational data of an autonomous agent that is committed to persistent storage—such as a disk, database, or distributed ledger—to survive process termination, system crashes, or hardware reboots. This contrasts with ephemeral state held only in volatile memory. It is a foundational requirement for stateful agents that perform long-running, multi-step tasks, enabling recovery and exactly-once semantics through mechanisms like state checkpointing and write-ahead logs (WAL).
