@kbediako/codex-orchestrator 0.1.36 → 0.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,6 +34,10 @@
34
34
  "child_runs",
35
35
  "run_summary_path",
36
36
  "plan_target_id",
37
+ "runtime_mode_requested",
38
+ "runtime_mode",
39
+ "runtime_provider",
40
+ "runtime_fallback",
37
41
  "instructions_hash",
38
42
  "instructions_sources"
39
43
  ],
@@ -235,6 +239,22 @@
235
239
  }
236
240
  },
237
241
  "guardrails_required": { "type": ["boolean", "null"] },
242
+ "runtime_mode_requested": { "type": "string", "enum": ["cli", "appserver"] },
243
+ "runtime_mode": { "type": "string", "enum": ["cli", "appserver"] },
244
+ "runtime_provider": { "type": "string", "enum": ["CliRuntimeProvider", "AppServerRuntimeProvider"] },
245
+ "runtime_fallback": {
246
+ "type": ["object", "null"],
247
+ "additionalProperties": false,
248
+ "required": ["occurred", "code", "reason", "from_mode", "to_mode", "checked_at"],
249
+ "properties": {
250
+ "occurred": { "type": "boolean" },
251
+ "code": { "type": ["string", "null"] },
252
+ "reason": { "type": ["string", "null"] },
253
+ "from_mode": { "type": ["string", "null"], "enum": ["cli", "appserver", null] },
254
+ "to_mode": { "type": ["string", "null"], "enum": ["cli", "appserver", null] },
255
+ "checked_at": { "type": ["string", "null"] }
256
+ }
257
+ },
238
258
  "scheduler": {
239
259
  "type": ["object", "null"],
240
260
  "additionalProperties": false,