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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
The Cloudflare Blog
罗磊的独立博客
月光博客
月光博客
N
Netflix TechBlog - Medium
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Jina AI
Jina AI
J
Java Code Geeks

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): bridge computer use elicitations · openclaw/o...
kevinslin · 2026-05-21 · via Recent Commits to openclaw:main

@@ -89,6 +89,24 @@ function buildCurrentCodexApprovalElicitation() {

8989

};

9090

}

919192+

function buildComputerUseApprovalElicitation(overrides: Record<string, unknown> = {}) {

93+

return {

94+

threadId: "thread-1",

95+

turnId: "turn-1",

96+

serverName: "computer-use",

97+

mode: "form",

98+

message: "Allow Codex to use Notes?",

99+

_meta: {

100+

persist: ["always"],

101+

},

102+

requestedSchema: {

103+

type: "object",

104+

properties: {},

105+

},

106+

...overrides,

107+

};

108+

}

109+92110

function buildPluginApprovalElicitation(overrides: Record<string, unknown> = {}) {

93111

return {

94112

threadId: "thread-1",

@@ -290,6 +308,201 @@ describe("Codex app-server elicitation bridge", () => {

290308

expect(approvalRequest.description).toContain("Repository: openclaw/openclaw");

291309

});

292310311+

it("routes Computer Use app approvals through plugin approvals", async () => {

312+

mockCallGatewayTool

313+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use", status: "accepted" })

314+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use", decision: "allow-once" });

315+316+

const result = await handleCodexAppServerElicitationRequest({

317+

requestParams: buildComputerUseApprovalElicitation(),

318+

paramsForRun: createParams(),

319+

threadId: "thread-1",

320+

turnId: "turn-1",

321+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

322+

computerUseMcpServerName: "computer-use",

323+

});

324+325+

expect(result).toEqual({

326+

action: "accept",

327+

content: null,

328+

_meta: null,

329+

});

330+

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

331+

"plugin.approval.request",

332+

"plugin.approval.waitDecision",

333+

]);

334+

});

335+336+

it("maps Computer Use allow-always decisions onto persistent metadata", async () => {

337+

mockCallGatewayTool

338+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use-always", status: "accepted" })

339+

.mockResolvedValueOnce({

340+

id: "plugin:approval-computer-use-always",

341+

decision: "allow-always",

342+

});

343+344+

const result = await handleCodexAppServerElicitationRequest({

345+

requestParams: buildComputerUseApprovalElicitation(),

346+

paramsForRun: createParams(),

347+

threadId: "thread-1",

348+

turnId: "turn-1",

349+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

350+

computerUseMcpServerName: "computer-use",

351+

});

352+353+

expect(result).toEqual({

354+

action: "accept",

355+

content: null,

356+

_meta: {

357+

persist: "always",

358+

},

359+

});

360+

});

361+362+

it("does not handle non-Computer Use elicitations without approval metadata", async () => {

363+

const result = await handleCodexAppServerElicitationRequest({

364+

requestParams: buildComputerUseApprovalElicitation({ serverName: "desktop-control" }),

365+

paramsForRun: createParams(),

366+

threadId: "thread-1",

367+

turnId: "turn-1",

368+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

369+

computerUseMcpServerName: "computer-use",

370+

});

371+372+

expect(result).toBeUndefined();

373+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

374+

});

375+376+

it("routes configured custom Computer Use server names through plugin approvals", async () => {

377+

mockCallGatewayTool

378+

.mockResolvedValueOnce({ id: "plugin:approval-custom-computer-use", status: "accepted" })

379+

.mockResolvedValueOnce({

380+

id: "plugin:approval-custom-computer-use",

381+

decision: "allow-once",

382+

});

383+384+

const result = await handleCodexAppServerElicitationRequest({

385+

requestParams: buildComputerUseApprovalElicitation({ serverName: "desktop-control" }),

386+

paramsForRun: createParams(),

387+

threadId: "thread-1",

388+

turnId: "turn-1",

389+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

390+

computerUseMcpServerName: "desktop-control",

391+

});

392+393+

expect(result).toEqual({

394+

action: "accept",

395+

content: null,

396+

_meta: null,

397+

});

398+

const approvalRequest = gatewayToolArg(0, 2) as { description: string };

399+

expect(approvalRequest.description).toContain("MCP server: desktop-control");

400+

});

401+402+

it("declines approved Computer Use app approvals with unmappable non-empty schemas", async () => {

403+

const warnSpy = vi.spyOn(embeddedAgentLog, "warn").mockImplementation(() => undefined);

404+

mockCallGatewayTool

405+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use-fields", status: "accepted" })

406+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use-fields", decision: "allow-once" });

407+408+

const result = await handleCodexAppServerElicitationRequest({

409+

requestParams: buildComputerUseApprovalElicitation({

410+

requestedSchema: {

411+

type: "object",

412+

properties: {

413+

appName: {

414+

type: "string",

415+

title: "App name",

416+

},

417+

},

418+

required: ["appName"],

419+

},

420+

}),

421+

paramsForRun: createParams(),

422+

threadId: "thread-1",

423+

turnId: "turn-1",

424+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

425+

computerUseMcpServerName: "computer-use",

426+

});

427+428+

expect(result).toEqual({ action: "decline", content: null, _meta: null });

429+

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

430+

"plugin.approval.request",

431+

"plugin.approval.waitDecision",

432+

]);

433+

expect(warnSpy).toHaveBeenCalledWith(

434+

"codex MCP approval elicitation approved without a mappable response",

435+

expect.objectContaining({

436+

fields: ["appName"],

437+

outcome: "approved-once",

438+

}),

439+

);

440+

});

441+442+

it("does not bridge Computer Use elicitations without an approval form schema", async () => {

443+

const result = await handleCodexAppServerElicitationRequest({

444+

requestParams: buildComputerUseApprovalElicitation({

445+

requestedSchema: "not-a-schema",

446+

}),

447+

paramsForRun: createParams(),

448+

threadId: "thread-1",

449+

turnId: "turn-1",

450+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

451+

computerUseMcpServerName: "computer-use",

452+

});

453+454+

expect(result).toBeUndefined();

455+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

456+

});

457+458+

it("does not bridge Computer Use elicitations outside form mode", async () => {

459+

const result = await handleCodexAppServerElicitationRequest({

460+

requestParams: buildComputerUseApprovalElicitation({

461+

mode: "notification",

462+

}),

463+

paramsForRun: createParams(),

464+

threadId: "thread-1",

465+

turnId: "turn-1",

466+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

467+

computerUseMcpServerName: "computer-use",

468+

});

469+470+

expect(result).toBeUndefined();

471+

expect(mockCallGatewayTool).not.toHaveBeenCalled();

472+

});

473+474+

it("falls back to a Computer Use approval title and sanitizes server names", async () => {

475+

mockCallGatewayTool

476+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use-title", status: "accepted" })

477+

.mockResolvedValueOnce({ id: "plugin:approval-computer-use-title", decision: "allow-once" });

478+479+

const result = await handleCodexAppServerElicitationRequest({

480+

requestParams: buildComputerUseApprovalElicitation({

481+

message: "\u001b[31m",

482+

serverName: "computer-use\u009b31m",

483+

_meta: null,

484+

}),

485+

paramsForRun: createParams(),

486+

threadId: "thread-1",

487+

turnId: "turn-1",

488+

pluginAppPolicyContext: createPluginAppPolicyContext({ apps: [] }),

489+

computerUseMcpServerName: "computer-use\u009b31m",

490+

});

491+492+

expect(result).toEqual({

493+

action: "accept",

494+

content: null,

495+

_meta: null,

496+

});

497+

const approvalRequest = gatewayToolArg(0, 2) as {

498+

title: string;

499+

description: string;

500+

};

501+

expect(approvalRequest.title).toBe("Computer Use approval");

502+

expect(approvalRequest.description).toContain("MCP server: computer-use");

503+

expect(approvalRequest.description).not.toContain("\u009b");

504+

});

505+293506

it("strips control and invisible formatting from approval display text", async () => {

294507

mockCallGatewayTool

295508

.mockResolvedValueOnce({ id: "plugin:approval-sanitized", status: "accepted" })