iiRecord
Agentic AI Atlas · Run
state-machine:runa5c.ai
II.
StateMachine JSON

state-machine:run

Structured · live

Run json

Inspect the normalized record payload exactly as the atlas UI reads it.

File · lifecycle/state-machines/run.yamlCluster · lifecycle
Record JSON
{
  "id": "state-machine:run",
  "_kind": "StateMachine",
  "_file": "lifecycle/state-machines/run.yaml",
  "_cluster": "lifecycle",
  "attributes": {
    "governsNodeKindId": "node-kind:Run",
    "displayName": "Run",
    "targetNodeKind": "Run",
    "description": "Lifecycle for a babysitter run from creation through completion or\nfailure.\n",
    "states": [
      {
        "id": "run.created",
        "displayName": "Run / created",
        "terminal": false,
        "description": "Run has been created; no effects yet requested."
      },
      {
        "id": "run.waiting",
        "displayName": "Run / waiting",
        "terminal": false,
        "description": "Run is waiting on one or more pending effects."
      },
      {
        "id": "run.completed",
        "displayName": "Run / completed",
        "terminal": true,
        "description": "Run finished successfully; completionProof is set."
      },
      {
        "id": "run.failed",
        "displayName": "Run / failed",
        "terminal": true,
        "description": "Run failed before reaching completed."
      }
    ],
    "transitions": [
      {
        "from": "run.created",
        "to": "run.created",
        "event": "PROCESS_ASSIGNED"
      },
      {
        "from": "run.created",
        "to": "run.waiting",
        "event": "EFFECT_REQUESTED"
      },
      {
        "from": "run.waiting",
        "to": "run.completed",
        "event": "RUN_COMPLETED"
      },
      {
        "from": "run.waiting",
        "to": "run.failed",
        "event": "RUN_FAILED"
      },
      {
        "from": "run.created",
        "to": "run.failed",
        "event": "RUN_FAILED"
      }
    ]
  },
  "outgoingEdges": [],
  "incomingEdges": [
    {
      "from": "lifecycle-state:run.waiting",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:run.running",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:run.completed",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:effect.pending",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:effect.ok",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:invocation.running",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "lifecycle-state:session.active",
      "to": "state-machine:run",
      "kind": "belongs_to_machine",
      "attributes": {}
    },
    {
      "from": "run:01kqex-example-run-001",
      "to": "state-machine:run",
      "kind": "governed_by"
    }
  ]
}