events.iterate.com

Event type

events.iterate.com/agent/paused

The agent stopped scheduling turns (autonomous-loop breaker, or an operator). Mirrors stream/paused. A breaker pause names its causal trigger and reduces to nothing if newer external input already superseded it. The next external message resumes an applied pause; self-driven triggers stay parked.

Payload schema

reasonstringoptional

Why the loop paused.

triggerOffsetintegeroptional

Self-driven context offset that tripped the autonomous breaker; absent for an operator-authored pause.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "reason": {
      "description": "Why the loop paused.",
      "type": "string",
      "minLength": 1
    },
    "triggerOffset": {
      "description": "Self-driven context offset that tripped the autonomous breaker; absent for an operator-authored pause.",
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    }
  }
}