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

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub 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
fix(imessage): suppress duplicate native exec approvals ·...
kevinslin · 2026-05-28 · via Recent Commits to openclaw:main

@@ -4,7 +4,11 @@ import type {

44

} from "openclaw/plugin-sdk/approval-runtime";

55

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

66

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

7-

import { imessageApprovalCapability, imessageNativeApprovalAdapter } from "./approval-native.js";

7+

import {

8+

imessageApprovalCapability,

9+

imessageNativeApprovalAdapter,

10+

shouldSuppressLocalIMessageExecApprovalPrompt,

11+

} from "./approval-native.js";

812913

type IMessageConfig = NonNullable<NonNullable<OpenClawConfig["channels"]>["imessage"]>;

1014

@@ -79,6 +83,27 @@ function nativeShouldHandle(params: {

7983

});

8084

}

818586+

function buildLocalApprovalPayload(

87+

params: {

88+

approvalKind?: "exec" | "plugin";

89+

agentId?: string | null;

90+

sessionKey?: string | null;

91+

} = {},

92+

) {

93+

return {

94+

text: "Approval required.",

95+

channelData: {

96+

execApproval: {

97+

approvalId: params.approvalKind === "plugin" ? "plugin:approval-1" : "exec-1",

98+

approvalSlug: params.approvalKind === "plugin" ? "plugin:approval-1" : "exec-1",

99+

approvalKind: params.approvalKind ?? "exec",

100+

agentId: params.agentId,

101+

sessionKey: params.sessionKey,

102+

},

103+

},

104+

};

105+

}

106+82107

describe("imessage approval capability", () => {

83108

it("disables native approvals when no top-level approvals config is set", () => {

84109

const cfg = buildConfig();

@@ -570,3 +595,232 @@ describe("imessage approval capability", () => {

570595

});

571596

});

572597

});

598+599+

describe("shouldSuppressLocalIMessageExecApprovalPrompt", () => {

600+

const activeExecHint = {

601+

kind: "approval-pending",

602+

approvalKind: "exec",

603+

nativeRouteActive: true,

604+

} as const;

605+606+

it("suppresses eligible session-mode exec approval prompts", () => {

607+

const cfg = buildConfig({

608+

imessage: { allowFrom: ["+15551230000"] },

609+

approvals: {

610+

exec: {

611+

enabled: true,

612+

agentFilter: ["main"],

613+

},

614+

},

615+

});

616+617+

expect(

618+

shouldSuppressLocalIMessageExecApprovalPrompt({

619+

cfg,

620+

accountId: "default",

621+

payload: buildLocalApprovalPayload({

622+

agentId: null,

623+

sessionKey: "agent:main:imessage:+15551230000",

624+

}),

625+

hint: activeExecHint,

626+

}),

627+

).toBe(true);

628+

});

629+630+

it("keeps local prompts for disabled, target-only, inactive, or non-exec cases", () => {

631+

const enabledConfig = buildConfig({

632+

imessage: { allowFrom: ["+15551230000"] },

633+

approvals: { exec: { enabled: true } },

634+

});

635+

const payload = buildLocalApprovalPayload({

636+

agentId: "main",

637+

sessionKey: "agent:main:imessage:+15551230000",

638+

});

639+640+

expect(

641+

shouldSuppressLocalIMessageExecApprovalPrompt({

642+

cfg: buildConfig(),

643+

payload,

644+

hint: activeExecHint,

645+

}),

646+

).toBe(false);

647+

expect(

648+

shouldSuppressLocalIMessageExecApprovalPrompt({

649+

cfg: buildConfig({

650+

imessage: { allowFrom: ["+15551230000"] },

651+

approvals: { exec: { enabled: false } },

652+

}),

653+

payload,

654+

hint: activeExecHint,

655+

}),

656+

).toBe(false);

657+

expect(

658+

shouldSuppressLocalIMessageExecApprovalPrompt({

659+

cfg: buildConfig({

660+

imessage: { allowFrom: ["+15551230000"] },

661+

approvals: {

662+

exec: {

663+

enabled: true,

664+

mode: "targets",

665+

targets: [{ channel: "imessage", to: "+15551230000" }],

666+

},

667+

},

668+

}),

669+

payload,

670+

hint: activeExecHint,

671+

}),

672+

).toBe(false);

673+

expect(

674+

shouldSuppressLocalIMessageExecApprovalPrompt({

675+

cfg: enabledConfig,

676+

payload,

677+

hint: { ...activeExecHint, nativeRouteActive: false },

678+

}),

679+

).toBe(false);

680+

expect(

681+

shouldSuppressLocalIMessageExecApprovalPrompt({

682+

cfg: enabledConfig,

683+

payload: buildLocalApprovalPayload({ approvalKind: "plugin" }),

684+

hint: activeExecHint,

685+

}),

686+

).toBe(false);

687+

expect(

688+

shouldSuppressLocalIMessageExecApprovalPrompt({

689+

cfg: enabledConfig,

690+

payload: { text: "Approval required." },

691+

hint: activeExecHint,

692+

}),

693+

).toBe(false);

694+

});

695+696+

it("suppresses direct same-chat iMessage prompts without explicit approvers", () => {

697+

const cfg = buildConfig({

698+

approvals: { exec: { enabled: true } },

699+

});

700+701+

expect(

702+

shouldSuppressLocalIMessageExecApprovalPrompt({

703+

cfg,

704+

payload: buildLocalApprovalPayload({

705+

agentId: "main",

706+

sessionKey: "agent:main:imessage:+15551230000",

707+

}),

708+

hint: activeExecHint,

709+

}),

710+

).toBe(true);

711+

expect(

712+

shouldSuppressLocalIMessageExecApprovalPrompt({

713+

cfg,

714+

accountId: "default",

715+

payload: buildLocalApprovalPayload({

716+

agentId: "main",

717+

sessionKey: "agent:main:imessage:direct:+15551230000",

718+

}),

719+

hint: activeExecHint,

720+

}),

721+

).toBe(true);

722+

expect(

723+

shouldSuppressLocalIMessageExecApprovalPrompt({

724+

cfg,

725+

accountId: "default",

726+

payload: buildLocalApprovalPayload({

727+

agentId: "main",

728+

sessionKey: "agent:main:imessage:default:direct:+15551230000",

729+

}),

730+

hint: activeExecHint,

731+

}),

732+

).toBe(true);

733+

});

734+735+

it("keeps no-approver local prompts for ambiguous or group iMessage sessions", () => {

736+

const cfg = buildConfig({

737+

approvals: { exec: { enabled: true } },

738+

});

739+740+

expect(

741+

shouldSuppressLocalIMessageExecApprovalPrompt({

742+

cfg,

743+

payload: buildLocalApprovalPayload({

744+

agentId: "main",

745+

sessionKey: "agent:main:imessage:group:test-group",

746+

}),

747+

hint: activeExecHint,

748+

}),

749+

).toBe(false);

750+

expect(

751+

shouldSuppressLocalIMessageExecApprovalPrompt({

752+

cfg,

753+

payload: buildLocalApprovalPayload({

754+

agentId: "main",

755+

sessionKey: "agent:main:imessage:chat_guid:iMessage;+;chat42",

756+

}),

757+

hint: activeExecHint,

758+

}),

759+

).toBe(false);

760+

expect(

761+

shouldSuppressLocalIMessageExecApprovalPrompt({

762+

cfg,

763+

payload: buildLocalApprovalPayload({

764+

agentId: "main",

765+

sessionKey: "agent:main:slack:C123",

766+

}),

767+

hint: activeExecHint,

768+

}),

769+

).toBe(false);

770+

expect(

771+

shouldSuppressLocalIMessageExecApprovalPrompt({

772+

cfg,

773+

accountId: "work",

774+

payload: buildLocalApprovalPayload({

775+

agentId: "main",

776+

sessionKey: "agent:main:imessage:default:direct:+15551230000",

777+

}),

778+

hint: activeExecHint,

779+

}),

780+

).toBe(false);

781+

});

782+783+

it("applies top-level approval filters with agent fallback from session key", () => {

784+

const cfg = buildConfig({

785+

imessage: { allowFrom: ["+15551230000"] },

786+

approvals: {

787+

exec: {

788+

enabled: true,

789+

agentFilter: ["ops"],

790+

sessionFilter: ["imessage"],

791+

},

792+

},

793+

});

794+795+

expect(

796+

shouldSuppressLocalIMessageExecApprovalPrompt({

797+

cfg,

798+

payload: buildLocalApprovalPayload({

799+

agentId: null,

800+

sessionKey: "agent:ops:imessage:+15551230000",

801+

}),

802+

hint: activeExecHint,

803+

}),

804+

).toBe(true);

805+

expect(

806+

shouldSuppressLocalIMessageExecApprovalPrompt({

807+

cfg,

808+

payload: buildLocalApprovalPayload({

809+

agentId: null,

810+

sessionKey: "agent:main:imessage:+15551230000",

811+

}),

812+

hint: activeExecHint,

813+

}),

814+

).toBe(false);

815+

expect(

816+

shouldSuppressLocalIMessageExecApprovalPrompt({

817+

cfg,

818+

payload: buildLocalApprovalPayload({

819+

agentId: null,

820+

sessionKey: "agent:ops:slack:C123",

821+

}),

822+

hint: activeExecHint,

823+

}),

824+

).toBe(false);

825+

});

826+

});