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

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗

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
Policy: add agent workspace conformance checks (#85096) ·...
giodl73-repo · 2026-05-23 · via Recent Commits to openclaw:main

@@ -18,15 +18,17 @@ report drift through `doctor --lint`. The final conformance signal is a clean

1818

instead of creating a separate health gate.

19192020

Policy currently manages configured channels, MCP servers, model providers,

21-

network SSRF posture, Gateway exposure posture, OpenClaw config secret

22-

provider/auth profile posture, and governed tool declarations. For example, IT

23-

or a workspace operator can record that Telegram is not an approved channel

24-

provider, restrict MCP servers and model refs to approved entries, require

25-

private-network fetch/browser access to remain disabled, require Gateway

26-

bind/auth/HTTP exposure to stay within reviewed bounds, require OpenClaw config

27-

SecretRefs to use managed providers, require config auth profiles to carry

28-

provider/mode metadata, require governed tools to carry risk and sensitivity

29-

metadata, then use `doctor --lint` as the shared conformance gate.

21+

network SSRF posture, Gateway exposure posture, agent workspace posture,

22+

OpenClaw config secret provider/auth profile posture, and governed tool

23+

declarations. For example, IT or a workspace operator can record that Telegram

24+

is not an approved channel provider, restrict MCP servers and model refs to

25+

approved entries, require private-network fetch/browser access to remain

26+

disabled, require Gateway bind/auth/HTTP exposure to stay within reviewed

27+

bounds, require agent workspace access and tool denies to stay in a reviewed

28+

posture, require OpenClaw config SecretRefs to use managed providers, require

29+

config auth profiles to carry provider/mode metadata, require governed tools to

30+

carry risk and sensitivity metadata, then use `doctor --lint` as the shared

31+

conformance gate.

30323133

Use policy when a workspace needs a durable statement such as "these channels

3234

must not be enabled" or "governed tools must declare approval metadata" and a

@@ -48,8 +50,8 @@ doctor can report the missing artifact.

48504951

Policy is authored, not generated from the user's current settings. A minimal

5052

policy for channels, MCP servers, model providers, network posture, Gateway

51-

exposure, OpenClaw config secret provider/auth profile posture, and tool

52-

metadata looks like this:

53+

exposure, agent workspace posture, OpenClaw config secret provider/auth profile

54+

posture, and tool metadata looks like this:

53555456

```jsonc

5557

{

@@ -99,6 +101,12 @@ metadata looks like this:

99101

"requireUrlAllowlists": true,

100102

},

101103

},

104+

"agents": {

105+

"workspace": {

106+

"allowedAccess": ["none", "ro"],

107+

"denyTools": ["exec", "process", "write", "edit", "apply_patch"],

108+

},

109+

},

102110

"secrets": {

103111

"requireManagedProviders": true,

104112

"denySources": ["exec"],

@@ -120,11 +128,17 @@ The rules are the authority. A category block is only a namespace; checks run

120128

when a concrete rule is present. OpenClaw reads current `channels.*` settings

121129

`mcp.servers.*`, `models.providers.*`, selected agent model refs, network SSRF

122130

settings, Gateway bind/auth/Control UI/Tailscale/remote/HTTP posture, OpenClaw

123-

config secret provider and SecretRef provenance, config auth profile metadata,

124-

and `TOOLS.md` declarations as evidence, then reports observed state that does

125-

not conform. If a policy denies non-loopback Gateway binds, omit `gateway.bind`

126-

only when you are willing to review the runtime default; set

127-

`gateway.bind=loopback` for strict config conformance. Secret evidence records

131+

config agent sandbox workspace access and tool deny posture, config secret

132+

provider and SecretRef provenance, config auth profile metadata, and `TOOLS.md`

133+

declarations as evidence, then reports observed state that does not conform. If

134+

a policy denies non-loopback Gateway binds, omit `gateway.bind` only when you

135+

are willing to review the runtime default; set `gateway.bind=loopback` for

136+

strict config conformance. For read-only agent posture, configure sandbox mode

137+

on the applicable defaults or agent and set `workspaceAccess` to `none` or

138+

`ro`; omitted or `off` sandbox mode does not satisfy a read-only/no-write

139+

policy. `agents.workspace.denyTools` supports `exec`, `process`, `write`,

140+

`edit`, and `apply_patch`; OpenClaw config `group:fs` covers file mutation tools

141+

and `group:runtime` covers shell/process tools. Secret evidence records

128142

provider/source posture and SecretRef metadata, never raw secret values. Policy

129143

does not read or attest per-agent credential stores such as `auth-profiles.json`;

130144

those stores remain owned by the existing auth and credential flows.

@@ -270,6 +284,28 @@ Example JSON output:

270284

"explicit": true

271285

}

272286

],

287+

"agentWorkspace": [

288+

{

289+

"id": "agents-defaults-workspace-access",

290+

"kind": "workspaceAccess",

291+

"source": "oc://openclaw.config/agents/defaults/sandbox/workspaceAccess",

292+

"scope": "defaults",

293+

"value": "ro",

294+

"sandboxMode": "all",

295+

"sandboxModeSource": "oc://openclaw.config/agents/defaults/sandbox/mode",

296+

"sandboxEnabled": true,

297+

"explicit": true

298+

},

299+

{

300+

"id": "agents-defaults-tool-exec",

301+

"kind": "toolDeny",

302+

"source": "oc://openclaw.config/tools/deny",

303+

"scope": "defaults",

304+

"tool": "exec",

305+

"denied": true,

306+

"explicit": true

307+

}

308+

],

273309

"secrets": [

274310

{

275311

"id": "vault",

@@ -306,7 +342,7 @@ Example JSON output:

306342

}

307343

]

308344

},

309-

"checksRun": 28,

345+

"checksRun": 30,

310346

"checksSkipped": 0,

311347

"findings": []

312348

}

@@ -339,6 +375,10 @@ If policy rules change intentionally, update both accepted hashes from a clean

339375

check. If workspace settings change intentionally but policy stays the same,

340376

only `expectedAttestationHash` usually changes.

341377378+

Enabling or upgrading `agents.workspace` rules adds `agentWorkspace` evidence to

379+

the workspace hash and attestation hash. Operators should review the new

380+

evidence and refresh accepted attestation hashes after enabling these rules.

381+342382

`openclaw policy watch` runs the same check repeatedly and reports when the

343383

current evidence no longer matches `expectedAttestationHash`:

344384

@@ -374,6 +414,8 @@ Policy currently verifies:

374414

| `policy/gateway-remote-enabled` | Gateway remote mode is active when policy denies it. |

375415

| `policy/gateway-http-endpoint-enabled` | A Gateway HTTP API endpoint is enabled while denied by policy. |

376416

| `policy/gateway-http-url-fetch-unrestricted` | Gateway HTTP URL-fetch input lacks a required URL allowlist. |

417+

| `policy/agents-workspace-access-denied` | Agent sandbox mode or workspace access is outside the policy allowlist. |

418+

| `policy/agents-tool-not-denied` | An agent or default config does not deny a tool required by policy. |

377419

| `policy/secrets-unmanaged-provider` | A config SecretRef references a provider not declared under `secrets.providers`. |

378420

| `policy/secrets-denied-provider-source` | A config secret provider or SecretRef uses a source denied by policy. |

379421

| `policy/secrets-insecure-provider` | A secret provider opts into insecure posture when policy denies it. |

@@ -483,6 +525,21 @@ Example Gateway exposure finding:

483525

}

484526

```

485527528+

Example agent workspace finding:

529+530+

```json

531+

{

532+

"checkId": "policy/agents-workspace-access-denied",

533+

"severity": "error",

534+

"message": "agents.defaults sandbox workspaceAccess 'rw' is not allowed by policy.",

535+

"source": "policy",

536+

"path": "openclaw config",

537+

"ocPath": "oc://openclaw.config/agents/defaults/sandbox/workspaceAccess",

538+

"target": "oc://openclaw.config/agents/defaults/sandbox/workspaceAccess",

539+

"requirement": "oc://policy.jsonc/agents/workspace/allowedAccess"

540+

}

541+

```

542+486543

## Repair

487544488545

`doctor --lint` and `policy check` are read-only.