mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:10:45 +00:00
feat(codex): add guardian app-server mode (#70090)
Reworks the Codex app-server Guardian change into the final landing shape: - keep YOLO as the default local app-server mode - add explicit `appServer.mode: "guardian"` - remove the legacy `OPENCLAW_CODEX_APP_SERVER_GUARDIAN` shortcut - document Guardian configuration and behavior - add Guardian event projection and Docker live probes for approved/ask-back decisions Co-authored-by: pashpashpash <nik@vault77.ai>
This commit is contained in:
@@ -34,6 +34,11 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"mode": {
|
||||
"type": "string",
|
||||
"enum": ["yolo", "guardian"],
|
||||
"default": "yolo"
|
||||
},
|
||||
"transport": {
|
||||
"type": "string",
|
||||
"enum": ["stdio", "websocket"],
|
||||
@@ -102,6 +107,11 @@
|
||||
"help": "Runtime controls for connecting to Codex app-server.",
|
||||
"advanced": true
|
||||
},
|
||||
"appServer.mode": {
|
||||
"label": "Execution Mode",
|
||||
"help": "Use yolo for unchained local execution or guardian for Codex guardian-reviewed approvals.",
|
||||
"advanced": true
|
||||
},
|
||||
"appServer.transport": {
|
||||
"label": "Transport",
|
||||
"help": "Use stdio to spawn Codex locally, or websocket to connect to an already-running app-server.",
|
||||
|
||||
Reference in New Issue
Block a user