Operating Systems

Provision, operate and tear down OS instances.

Lifecycle

  • provisioning - being deployed.
  • running - active; agents and automations execute.
  • paused - retained but idle; no agent runs.
  • stopped - halted; can be resumed.

Operations

From the console Overview tab or the API you can:

  • Pause / Resume - toggle execution without losing state.
  • Restart - cycle all agents.
  • Clone - duplicate configuration into a fresh OS with a new wallet.
  • Backup - snapshot memory and state.
  • Terminate - permanently destroy the OS, its agents and memory.

Examples

List Operating Systems
GET /v1/os

200 OK
[
  { "id": "os_production", "status": "running", "region": "us-east", "agentCount": 8 },
  { "id": "os_research-lab", "status": "running", "region": "us-west", "agentCount": 6 }
]
Pause an Operating System
PATCH /v1/os/os_production
{ "status": "paused" }
Clone / Terminate
POST   /v1/os/os_production/clone
DELETE /v1/os/os_production