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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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
fix(codex): enforce native tool policy (#82496) · opencla...
joshavant · 2026-05-16 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

11

import {

22

callGatewayTool,

3+

runBeforeToolCallHook,

34

type EmbeddedRunAttemptParams,

45

} from "openclaw/plugin-sdk/agent-harness-runtime";

56

import { beforeEach, describe, expect, it, vi } from "vitest";

@@ -8,9 +9,14 @@ import { buildApprovalResponse, handleCodexAppServerApprovalRequest } from "./ap

89

vi.mock("openclaw/plugin-sdk/agent-harness-runtime", async (importOriginal) => ({

910

...(await importOriginal<typeof import("openclaw/plugin-sdk/agent-harness-runtime")>()),

1011

callGatewayTool: vi.fn(),

12+

runBeforeToolCallHook: vi.fn(async ({ params }: { params: unknown }) => ({

13+

blocked: false,

14+

params,

15+

})),

1116

}));

12171318

const mockCallGatewayTool = vi.mocked(callGatewayTool);

19+

const mockRunBeforeToolCallHook = vi.mocked(runBeforeToolCallHook);

14201521

function requireRecord(value: unknown, label: string): Record<string, unknown> {

1622

if (!value || typeof value !== "object" || Array.isArray(value)) {

@@ -41,7 +47,13 @@ function gatewayCallMethod(callIndex = 0) {

41474248

function findApprovalEvent(

4349

params: EmbeddedRunAttemptParams,

44-

fields: { status?: string; approvalId?: string; command?: string; reason?: string },

50+

fields: {

51+

status?: string;

52+

approvalId?: string;

53+

command?: string;

54+

reason?: string;

55+

message?: string;

56+

},

4557

) {

4658

const onAgentEvent = params.onAgentEvent as unknown as { mock?: { calls?: unknown[][] } };

4759

const calls = onAgentEvent.mock?.calls;

@@ -58,7 +70,8 @@ function findApprovalEvent(

5870

(!fields.status || data.status === fields.status) &&

5971

(!fields.approvalId || data.approvalId === fields.approvalId) &&

6072

(!fields.command || data.command === fields.command) &&

61-

(!fields.reason || data.reason === fields.reason)

73+

(!fields.reason || data.reason === fields.reason) &&

74+

(!fields.message || data.message === fields.message)

6275

) {

6376

return data;

6477

}

@@ -81,6 +94,11 @@ function createParams(): EmbeddedRunAttemptParams {

8194

describe("Codex app-server approval bridge", () => {

8295

beforeEach(() => {

8396

mockCallGatewayTool.mockReset();

97+

mockRunBeforeToolCallHook.mockReset();

98+

mockRunBeforeToolCallHook.mockImplementation(async ({ params }) => ({

99+

blocked: false,

100+

params,

101+

}));

84102

});

8510386104

it("routes command approvals through plugin approvals and accepts allowed commands", async () => {

@@ -116,10 +134,123 @@ describe("Codex app-server approval bridge", () => {

116134

expect(requestPayload.turnSourceChannel).toBe("telegram");

117135

expect(requestPayload.turnSourceTo).toBe("chat-1");

118136

expect(gatewayCallOptions()).toEqual({ expectFinal: false });

137+

expect(mockRunBeforeToolCallHook).toHaveBeenCalledWith({

138+

toolName: "bash",

139+

params: {

140+

command: "pnpm test extensions/codex/src/app-server",

141+

approval: {

142+

threadId: "thread-1",

143+

turnId: "turn-1",

144+

itemId: "cmd-1",

145+

command: "pnpm test extensions/codex/src/app-server",

146+

},

147+

},

148+

toolCallId: "cmd-1",

149+

approvalMode: "report",

150+

signal: undefined,

151+

ctx: {

152+

agentId: "main",

153+

sessionKey: "agent:main:session-1",

154+

channelId: "telegram",

155+

},

156+

});

119157

findApprovalEvent(params, { status: "pending", approvalId: "plugin:approval-1" });

120158

findApprovalEvent(params, { status: "approved", approvalId: "plugin:approval-1" });

121159

});

122160161+

it("denies command approvals before prompting when OpenClaw tool policy blocks", async () => {

162+

const params = createParams();

163+

mockRunBeforeToolCallHook.mockResolvedValueOnce({

164+

blocked: true,

165+

kind: "veto",

166+

deniedReason: "plugin-before-tool-call",

167+

reason: "blocked by policy",

168+

});

169+170+

const result = await handleCodexAppServerApprovalRequest({

171+

method: "item/commandExecution/requestApproval",

172+

requestParams: {

173+

threadId: "thread-1",

174+

turnId: "turn-1",

175+

itemId: "cmd-blocked",

176+

command: "cat /tmp/private_key",

177+

},

178+

paramsForRun: params,

179+

threadId: "thread-1",

180+

turnId: "turn-1",

181+

});

182+183+

expect(result).toEqual({ decision: "decline" });

184+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

185+

findApprovalEvent(params, { status: "denied" });

186+

});

187+188+

it("denies command approvals when OpenClaw tool policy rewrites params", async () => {

189+

const params = createParams();

190+

mockRunBeforeToolCallHook.mockResolvedValueOnce({

191+

blocked: false,

192+

params: {

193+

command: "echo rewritten",

194+

approval: {

195+

threadId: "thread-1",

196+

turnId: "turn-1",

197+

itemId: "cmd-rewritten",

198+

command: "echo rewritten",

199+

},

200+

},

201+

});

202+203+

const result = await handleCodexAppServerApprovalRequest({

204+

method: "item/commandExecution/requestApproval",

205+

requestParams: {

206+

threadId: "thread-1",

207+

turnId: "turn-1",

208+

itemId: "cmd-rewritten",

209+

command: "cat /tmp/private_key",

210+

},

211+

paramsForRun: params,

212+

threadId: "thread-1",

213+

turnId: "turn-1",

214+

});

215+216+

expect(result).toEqual({ decision: "decline" });

217+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

218+

findApprovalEvent(params, {

219+

status: "denied",

220+

message:

221+

"OpenClaw tool policy rewrote Codex app-server approval params; refusing original request.",

222+

});

223+

});

224+225+

it("denies command approvals when OpenClaw tool policy requires approval", async () => {

226+

const params = createParams();

227+

mockRunBeforeToolCallHook.mockResolvedValueOnce({

228+

blocked: true,

229+

kind: "failure",

230+

deniedReason: "plugin-approval",

231+

reason: "Plugin approval required",

232+

});

233+

const result = await handleCodexAppServerApprovalRequest({

234+

method: "item/commandExecution/requestApproval",

235+

requestParams: {

236+

threadId: "thread-1",

237+

turnId: "turn-1",

238+

itemId: "cmd-needs-approval",

239+

command: "pnpm test",

240+

},

241+

paramsForRun: params,

242+

threadId: "thread-1",

243+

turnId: "turn-1",

244+

});

245+246+

expect(result).toEqual({ decision: "decline" });

247+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

248+

findApprovalEvent(params, {

249+

status: "denied",

250+

message: "Plugin approval required",

251+

});

252+

});

253+123254

it("describes command approvals from parsed command actions when available", async () => {

124255

const params = createParams();

125256

mockCallGatewayTool

@@ -143,6 +274,12 @@ describe("Codex app-server approval bridge", () => {

143274

const requestPayload = gatewayRequestPayload();

144275

expect(String(requestPayload.description)).toContain("Command: pnpm test extensions/codex");

145276

expect(String(requestPayload.description)).not.toContain("bash -lc");

277+

expect(mockRunBeforeToolCallHook.mock.calls.at(0)?.[0]).toMatchObject({

278+

toolName: "bash",

279+

params: {

280+

command: "bash -lc 'pnpm test extensions/codex'",

281+

},

282+

});

146283

findApprovalEvent(params, { command: "pnpm test extensions/codex" });

147284

});

148285