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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
量子位
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - Franky
美团技术团队
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
罗磊的独立博客
Jina AI
Jina AI
小众软件
小众软件
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
博客园 - 聂微东
博客园_首页
The Cloudflare Blog
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队

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): defer report-mode plugin approvals · openclaw...
steipete · 2026-05-29 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import {

22

callGatewayTool,

33

hasNativeHookRelayInvocation,

44

invokeNativeHookRelay,

5+

resolveNativeHookRelayDeferredToolApproval,

56

runBeforeToolCallHook,

67

type EmbeddedRunAttemptParams,

78

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

@@ -13,6 +14,7 @@ vi.mock("openclaw/plugin-sdk/agent-harness-runtime", async (importOriginal) => (

1314

callGatewayTool: vi.fn(),

1415

hasNativeHookRelayInvocation: vi.fn(() => false),

1516

invokeNativeHookRelay: vi.fn(),

17+

resolveNativeHookRelayDeferredToolApproval: vi.fn(),

1618

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

1719

blocked: false,

1820

params,

@@ -22,6 +24,9 @@ vi.mock("openclaw/plugin-sdk/agent-harness-runtime", async (importOriginal) => (

2224

const mockCallGatewayTool = vi.mocked(callGatewayTool);

2325

const mockHasNativeHookRelayInvocation = vi.mocked(hasNativeHookRelayInvocation);

2426

const mockInvokeNativeHookRelay = vi.mocked(invokeNativeHookRelay);

27+

const mockResolveNativeHookRelayDeferredToolApproval = vi.mocked(

28+

resolveNativeHookRelayDeferredToolApproval,

29+

);

2530

const mockRunBeforeToolCallHook = vi.mocked(runBeforeToolCallHook);

26312732

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

@@ -103,6 +108,8 @@ describe("Codex app-server approval bridge", () => {

103108

mockHasNativeHookRelayInvocation.mockReset();

104109

mockHasNativeHookRelayInvocation.mockReturnValue(false);

105110

mockInvokeNativeHookRelay.mockReset();

111+

mockResolveNativeHookRelayDeferredToolApproval.mockReset();

112+

mockResolveNativeHookRelayDeferredToolApproval.mockResolvedValue(undefined);

106113

mockRunBeforeToolCallHook.mockReset();

107114

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

108115

blocked: false,

@@ -132,7 +139,7 @@ describe("Codex app-server approval bridge", () => {

132139

expect(mockRunBeforeToolCallHook).toHaveBeenCalledWith(

133140

expect.objectContaining({

134141

toolName: "exec",

135-

approvalMode: "report",

142+

approvalMode: "request",

136143

}),

137144

);

138145

findApprovalEvent(params, {

@@ -212,7 +219,7 @@ describe("Codex app-server approval bridge", () => {

212219

},

213220

},

214221

toolCallId: "cmd-1",

215-

approvalMode: "report",

222+

approvalMode: "request",

216223

signal: undefined,

217224

ctx: {

218225

agentId: "main",

@@ -385,6 +392,11 @@ describe("Codex app-server approval bridge", () => {

385392

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

386393

expect(mockRunBeforeToolCallHook).not.toHaveBeenCalled();

387394

expect(mockInvokeNativeHookRelay).toHaveBeenCalledTimes(1);

395+

expect(mockResolveNativeHookRelayDeferredToolApproval).toHaveBeenCalledWith({

396+

relayId: "relay-1",

397+

toolUseId: "cmd-native-relay-noop",

398+

signal: undefined,

399+

});

388400

expect(mockCallGatewayTool.mock.calls.map(([method]) => method)).toEqual([

389401

"plugin.approval.request",

390402

"plugin.approval.waitDecision",

@@ -432,12 +444,53 @@ describe("Codex app-server approval bridge", () => {

432444

event: "pre_tool_use",

433445

toolUseId: "cmd-native-relay-observed",

434446

});

447+

expect(mockResolveNativeHookRelayDeferredToolApproval).toHaveBeenCalledWith({

448+

relayId: "relay-1",

449+

toolUseId: "cmd-native-relay-observed",

450+

signal: undefined,

451+

});

435452

expect(mockCallGatewayTool.mock.calls.map(([method]) => method)).toEqual([

436453

"plugin.approval.request",

437454

"plugin.approval.waitDecision",

438455

]);

439456

});

440457458+

it("accepts command approvals from deferred native PreToolUse plugin approvals", async () => {

459+

const params = createParams();

460+

mockHasNativeHookRelayInvocation.mockReturnValueOnce(true);

461+

mockResolveNativeHookRelayDeferredToolApproval.mockResolvedValueOnce({

462+

handled: true,

463+

outcome: "approved-once",

464+

});

465+466+

const result = await handleCodexAppServerApprovalRequest({

467+

method: "item/commandExecution/requestApproval",

468+

requestParams: {

469+

threadId: "thread-1",

470+

turnId: "turn-1",

471+

itemId: "cmd-native-relay-deferred",

472+

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

473+

cwd: "/workspace",

474+

},

475+

paramsForRun: params,

476+

threadId: "thread-1",

477+

turnId: "turn-1",

478+

nativeHookRelay: {

479+

relayId: "relay-1",

480+

allowedEvents: ["pre_tool_use"],

481+

},

482+

});

483+484+

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

485+

expect(mockRunBeforeToolCallHook).not.toHaveBeenCalled();

486+

expect(mockInvokeNativeHookRelay).not.toHaveBeenCalled();

487+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

488+

findApprovalEvent(params, {

489+

status: "approved",

490+

message: "Codex app-server approval granted for this turn.",

491+

});

492+

});

493+441494

it("fails closed when the native hook relay returns unreadable approval output", async () => {

442495

const params = createParams();

443496

mockInvokeNativeHookRelay.mockResolvedValueOnce({

@@ -676,6 +729,43 @@ describe("Codex app-server approval bridge", () => {

676729

});

677730

});

678731732+

it("keeps OpenClaw plugin allow-always approvals scoped to one Codex request", async () => {

733+

const params = createParams();

734+

mockRunBeforeToolCallHook.mockResolvedValueOnce({

735+

blocked: false,

736+

params: {

737+

command: "pnpm test",

738+

approval: {

739+

threadId: "thread-1",

740+

turnId: "turn-1",

741+

itemId: "cmd-needs-approval",

742+

command: "pnpm test",

743+

},

744+

},

745+

approvalResolution: "allow-always",

746+

});

747+748+

const result = await handleCodexAppServerApprovalRequest({

749+

method: "item/commandExecution/requestApproval",

750+

requestParams: {

751+

threadId: "thread-1",

752+

turnId: "turn-1",

753+

itemId: "cmd-needs-approval",

754+

command: "pnpm test",

755+

},

756+

paramsForRun: params,

757+

threadId: "thread-1",

758+

turnId: "turn-1",

759+

});

760+761+

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

762+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

763+

findApprovalEvent(params, {

764+

status: "approved",

765+

message: "Codex app-server approval granted for this turn.",

766+

});

767+

});

768+679769

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

680770

const params = createParams();

681771

mockRunBeforeToolCallHook.mockResolvedValueOnce({