agent-desktop/docs/json-output.md
Lahfir 4add46ab38 chore: checkpoint five verified remediation rounds before e2e convergence
Freezes the working tree as a fixed baseline: static gates green (1551 lib
tests, clippy -D warnings, fmt, release 0.4.7), live-verified E1/E2 fixes,
notification/harness work pending e2e acceptance. Known-open: hover fixture
churn to back out, 3 e2e failures (hover oracle, AE6 sheet, sheet cancel),
NT1-NT4 unproven.
2026-07-11 22:06:13 -07:00

2 KiB

JSON output contract

Every command returns structured JSON:

{
  "version": "2.1",
  "ok": true,
  "command": "click",
  "data": { "action": "click" }
}

Errors include machine-readable codes and recovery hints:

{
  "version": "2.1",
  "ok": false,
  "command": "click",
  "error": {
    "code": "STALE_REF",
    "message": "Element at @e7 no longer matches the last snapshot",
    "suggestion": "Run 'snapshot' to refresh refs, then retry",
    "recovery": {
      "strategy": "refresh_snapshot_then_retry_original",
      "retryable": true,
      "requires_fresh_snapshot": true
    },
    "disposition": {
      "delivery": "not_delivered",
      "retry": "safe"
    }
  }
}

Version 2.1 replaces the 2.0 error.retry_command string with the structured error.recovery object and adds error.disposition. Consumers must select a recovery strategy from recovery.strategy only when disposition.retry is safe; command strings from older envelopes must not be executed blindly. The removed retry_command field has no compatibility alias.

Error codes

Code Meaning
PERM_DENIED Accessibility permission not granted
ELEMENT_NOT_FOUND No element matched the ref or query
APP_NOT_FOUND Application not running or no windows
STALE_REF Ref could not be re-identified in the live UI
AMBIGUOUS_TARGET Ref recovery matched multiple plausible targets
SNAPSHOT_NOT_FOUND Snapshot ID is missing or expired
POLICY_DENIED Physical/headed path blocked by policy
ACTION_FAILED The OS rejected the action
ACTION_NOT_SUPPORTED The target does not expose the requested action
APP_UNRESPONSIVE The matching application stopped responding
PLATFORM_NOT_SUPPORTED Adapter method not implemented on this platform
TIMEOUT Wait condition expired
INVALID_ARGS Invalid argument values

Exit codes

0 success, 1 structured error (JSON on stdout), 2 argument parse error.