惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: add permission modes page · openclaw/openclaw@ae651e7
steipete · 2026-05-31 · via Recent Commits to openclaw:main
1+

---

2+

summary: "Permission modes for host exec, Codex Guardian approvals, and ACPX harness sessions"

3+

read_when:

4+

- Choosing auto, ask, allowlist, full, or deny for command permissions

5+

- Configuring Codex Guardian-reviewed approvals through tools.exec.mode

6+

- Comparing OpenClaw exec approvals with ACPX harness permissions

7+

title: "Permission modes"

8+

---

9+10+

Permission modes decide how much authority an agent has before it can run host commands, write files, or ask a backend harness for extra access. Start with `tools.exec.mode: "auto"` when you want OpenClaw to use allowlists first, then Codex native auto-review or a human approval route for misses.

11+12+

<Note>

13+

Permission mode is separate from `tools.exec.host=auto`. `tools.exec.host`

14+

chooses where a command runs. `tools.exec.mode` chooses how host exec is

15+

approved.

16+

</Note>

17+18+

## Recommended default

19+20+

Use `auto` for coding agents that need useful host access without making every miss a human prompt:

21+22+

```bash

23+

openclaw config set tools.exec.mode auto

24+

openclaw approvals get

25+

openclaw gateway restart

26+

```

27+28+

Then verify the effective policy:

29+30+

```bash

31+

openclaw exec-policy show

32+

```

33+34+

In `auto` mode, OpenClaw runs deterministic allowlist matches directly. Approval misses go through OpenClaw's native auto reviewer first, then fall back to the configured human approval route when needed.

35+36+

## OpenClaw host exec modes

37+38+

`tools.exec.mode` is the normalized policy surface for host `exec`.

39+40+

| Mode | Behavior | Use when |

41+

| ----------- | -------------------------------------------- | ----------------------------------------------------- |

42+

| `deny` | Block host exec. | No host commands are allowed. |

43+

| `allowlist` | Run only allowlisted commands. | You have a known-safe command set. |

44+

| `ask` | Run allowlist matches and ask on misses. | A human should review new commands. |

45+

| `auto` | Run allowlist matches, then use auto-review. | Coding sessions need practical guarded access. |

46+

| `full` | Run host exec without prompts. | This trusted host/session should skip approval gates. |

47+48+

For the full host exec policy, local approvals file, allowlist schema, safe bins, and forwarding behavior, see [Exec approvals](/tools/exec-approvals).

49+50+

## Codex Guardian mapping

51+52+

For native Codex app-server sessions, `tools.exec.mode: "auto"` maps to Codex Guardian-reviewed approvals when the local Codex requirements allow it. OpenClaw usually sends:

53+54+

| Codex field | Typical value |

55+

| ------------------- | ----------------- |

56+

| `approvalPolicy` | `on-request` |

57+

| `approvalsReviewer` | `auto_review` |

58+

| `sandbox` | `workspace-write` |

59+60+

In `auto` mode, OpenClaw does not preserve legacy unsafe Codex overrides such as `approvalPolicy: "never"` or `sandbox: "danger-full-access"`. Use `tools.exec.mode: "full"` only when you intentionally want the no-approval posture.

61+62+

For app-server setup, auth order, and native Codex runtime details, see [Codex harness](/plugins/codex-harness).

63+64+

## ACPX harness permissions

65+66+

ACPX sessions are non-interactive, so they cannot click a TTY permission prompt. ACPX uses separate harness-level settings under `plugins.entries.acpx.config`:

67+68+

| Setting | Common value | Meaning |

69+

| --------------------------- | --------------- | ------------------------------------------- |

70+

| `permissionMode` | `approve-reads` | Auto-approve reads only. |

71+

| `permissionMode` | `approve-all` | Auto-approve writes and shell commands. |

72+

| `permissionMode` | `deny-all` | Deny all permission prompts. |

73+

| `nonInteractivePermissions` | `fail` | Abort when a prompt would be required. |

74+

| `nonInteractivePermissions` | `deny` | Deny the prompt and continue when possible. |

75+76+

Set ACPX permissions separately from OpenClaw exec approvals:

77+78+

```bash

79+

openclaw config set plugins.entries.acpx.config.permissionMode approve-all

80+

openclaw config set plugins.entries.acpx.config.nonInteractivePermissions fail

81+

openclaw gateway restart

82+

```

83+84+

Use `approve-all` as the ACPX break-glass equivalent of a no-prompt harness session. For setup details and failure modes, see [ACP agents setup](/tools/acp-agents-setup#permission-configuration).

85+86+

## Choosing a mode

87+88+

| Goal | Configure |

89+

| --------------------------------------------- | ----------------------------------------------------------- |

90+

| Block host commands completely | `tools.exec.mode: "deny"` |

91+

| Let known-safe commands run only | `tools.exec.mode: "allowlist"` |

92+

| Ask a human for every new command shape | `tools.exec.mode: "ask"` |

93+

| Use Codex/OpenClaw auto-review before humans | `tools.exec.mode: "auto"` |

94+

| Skip host exec approvals entirely | `tools.exec.mode: "full"` plus matching host approvals file |

95+

| Make non-interactive ACPX sessions write/exec | `plugins.entries.acpx.config.permissionMode: "approve-all"` |

96+97+

If a command still prompts or fails after changing mode, inspect both layers:

98+99+

```bash

100+

openclaw approvals get

101+

openclaw exec-policy show

102+

```

103+104+

Host exec uses the stricter result of OpenClaw config and the host-local approvals file. ACPX harness permissions do not loosen host exec approvals, and host exec approvals do not loosen ACPX harness prompts.

105+106+

## Related

107+108+

- [Exec approvals](/tools/exec-approvals)

109+

- [Exec approvals - advanced](/tools/exec-approvals-advanced)

110+

- [Codex harness](/plugins/codex-harness)

111+

- [ACP agents setup](/tools/acp-agents-setup#permission-configuration)