chore(sync): mirror docs from openclaw/openclaw@6c67339798

This commit is contained in:
openclaw-docs-sync[bot] 2026-04-21 00:07:24 +00:00
parent 472ca4d2fc
commit 1bb7420db0
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "8c05043eca59d24fa3b4290a17ccde951808418d",
"syncedAt": "2026-04-21T00:03:50.939Z"
"sha": "6c67339798af4b329d9a3349fe5d9092acdf24a0",
"syncedAt": "2026-04-21T00:07:23.659Z"
}

View File

@ -263,7 +263,9 @@ By default, the plugin starts Codex locally with:
codex app-server --listen stdio://
```
You can keep that default and only tune Codex native policy:
By default, OpenClaw asks Codex to request native approvals. You can tune that
policy further, for example by tightening it and routing reviews through the
guardian:
```json5
{
@ -273,7 +275,8 @@ You can keep that default and only tune Codex native policy:
enabled: true,
config: {
appServer: {
approvalPolicy: "on-request",
approvalPolicy: "untrusted",
approvalsReviewer: "guardian_subagent",
sandbox: "workspace-write",
serviceTier: "priority",
},
@ -317,7 +320,7 @@ Supported `appServer` fields:
| `authToken` | unset | Bearer token for WebSocket transport. |
| `headers` | `{}` | Extra WebSocket headers. |
| `requestTimeoutMs` | `60000` | Timeout for app-server control-plane calls. |
| `approvalPolicy` | `"never"` | Native Codex approval policy sent to thread start/resume/turn. |
| `approvalPolicy` | `"on-request"` | Native Codex approval policy sent to thread start/resume/turn. |
| `sandbox` | `"workspace-write"` | Native Codex sandbox mode sent to thread start/resume. |
| `approvalsReviewer` | `"user"` | Use `"guardian_subagent"` to let Codex guardian review native approvals. |
| `serviceTier` | unset | Optional Codex service tier, for example `"priority"`. |