You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/codex/openclaw.plugin.json
+67Lines changed: 67 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,38 @@
83
83
"minimum": 1,
84
84
"default": 60000
85
85
},
86
+
"liveTestTimeoutMs": {
87
+
"type": "number",
88
+
"minimum": 1,
89
+
"default": 60000
90
+
},
91
+
"toolCallTimeoutMs": {
92
+
"type": "number",
93
+
"minimum": 1,
94
+
"default": 60000
95
+
},
96
+
"healthCheckEnabled": {
97
+
"type": "boolean",
98
+
"default": false
99
+
},
100
+
"healthCheckIntervalMinutes": {
101
+
"type": "number",
102
+
"enum": [30, 60, 120, 240],
103
+
"default": 60
104
+
},
105
+
"pluginCacheMode": {
106
+
"type": "string",
107
+
"enum": ["shared", "independent"],
108
+
"default": "independent"
109
+
},
110
+
"strictReadiness": {
111
+
"type": "boolean",
112
+
"default": false
113
+
},
114
+
"autoRepair": {
115
+
"type": "boolean",
116
+
"default": false
117
+
},
86
118
"marketplaceSource": {
87
119
"type": "string"
88
120
},
@@ -365,6 +397,41 @@
365
397
"help": "Maximum time to wait for Codex app-server to finish loading marketplaces during Computer Use install.",
366
398
"advanced": true
367
399
},
400
+
"computerUse.liveTestTimeoutMs": {
401
+
"label": "Live Test Timeout",
402
+
"help": "Maximum time for the Computer Use list_apps readiness probe before status and startup treat the live test as failed.",
403
+
"advanced": true
404
+
},
405
+
"computerUse.toolCallTimeoutMs": {
406
+
"label": "Tool Call Timeout",
407
+
"help": "Maximum expected time for real Computer Use tool calls such as list_apps before OpenClaw treats the child runtime as stale.",
408
+
"advanced": true
409
+
},
410
+
"computerUse.healthCheckEnabled": {
411
+
"label": "Periodic Health Checks",
412
+
"help": "When true, run periodic Computer Use live probes on the configured cadence.",
413
+
"advanced": true
414
+
},
415
+
"computerUse.healthCheckIntervalMinutes": {
416
+
"label": "Health Check Interval",
417
+
"help": "Cadence for periodic Computer Use health checks when health checks are enabled.",
418
+
"advanced": true
419
+
},
420
+
"computerUse.pluginCacheMode": {
421
+
"label": "Plugin Cache Mode",
422
+
"help": "The default independent mode leaves each Codex home unmanaged. Choose shared to opt in to a refreshed Codex-discoverable cache copy.",
423
+
"advanced": true
424
+
},
425
+
"computerUse.strictReadiness": {
426
+
"label": "Strict Readiness",
427
+
"help": "When true, a failed Computer Use live probe stops Codex-mode startup. The default false value preserves existing enabled setups by continuing with a warning.",
428
+
"advanced": true
429
+
},
430
+
"computerUse.autoRepair": {
431
+
"label": "Auto Repair",
432
+
"help": "When true, failed Computer Use live tests repair stale scoped Computer Use MCP children before retrying once.",
433
+
"advanced": true
434
+
},
368
435
"computerUse.marketplaceSource": {
369
436
"label": "Marketplace Source",
370
437
"help": "Optional Codex marketplace source to add before installing Computer Use.",
0 commit comments