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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
美团技术团队
量子位
M
MIT News - Artificial intelligence
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
小众软件
小众软件
博客园 - 司徒正美
罗磊的独立博客
云风的 BLOG
云风的 BLOG
B
Blog RSS Feed
博客园 - 聂微东

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(exec): resume agent turn for native chat exec approva...
NianJiuZst · 2026-06-19 · via Recent Commits to openclaw:main

@@ -35,22 +35,37 @@ vi.mock("../infra/outbound/message.js", () => ({

3535

}));

36363737

vi.mock("../utils/message-channel.js", () => {

38+

const INTERNAL_MESSAGE_CHANNEL = "webchat";

39+

const NATIVE_APPROVAL_CHANNELS = new Set([

40+

"webchat",

41+

"discord",

42+

"googlechat",

43+

"imessage",

44+

"matrix",

45+

"qqbot",

46+

"signal",

47+

"slack",

48+

"telegram",

49+

"whatsapp",

50+

]);

3851

const normalizeMessageChannel = (raw?: string | null) => {

3952

const normalized = raw?.trim().toLowerCase();

4053

if (!normalized) {

4154

return undefined;

4255

}

43-

if (normalized === "web" || normalized === "webchat") {

44-

return "internal";

56+

if (normalized === "web") {

57+

return INTERNAL_MESSAGE_CHANNEL;

4558

}

4659

return normalized;

4760

};

4861

const isGatewayMessageChannel = (value: string) => Boolean(normalizeMessageChannel(value));

4962

return {

50-

INTERNAL_MESSAGE_CHANNEL: "internal",

63+

INTERNAL_MESSAGE_CHANNEL,

64+

isNativeApprovalChannel: (value?: string | null) =>

65+

typeof value === "string" && NATIVE_APPROVAL_CHANNELS.has(value),

5166

isDeliverableMessageChannel: (value: string) => {

5267

const channel = normalizeMessageChannel(value);

53-

return Boolean(channel && channel !== "internal" && channel !== "tui");

68+

return Boolean(channel && channel !== INTERNAL_MESSAGE_CHANNEL && channel !== "tui");

5469

},

5570

isGatewayMessageChannel,

5671

normalizeMessageChannel,

@@ -98,12 +113,12 @@ vi.mock("../infra/exec-approval-surface.js", () => ({

98113

kind: "enabled",

99114

channel,

100115

channelLabel:

101-

channel === "tui" ? "terminal UI" : channel === "internal" ? "Web UI" : "this platform",

116+

channel === "tui" ? "terminal UI" : channel === "webchat" ? "Web UI" : "this platform",

102117

accountId: params.accountId ?? undefined,

103118

};

104119

},

105120

supportsNativeExecApprovalClient: (channel?: string | null) =>

106-

!channel || channel === "internal" || channel === "tui",

121+

!channel || channel === "webchat" || channel === "tui",

107122

}));

108123109124

vi.mock("../infra/shell-env.js", () => ({

@@ -962,7 +977,7 @@ describe("exec approvals", () => {

962977

);

963978

});

964979965-

it("continues the original agent session after approved gateway exec completes with an external route", async () => {

980+

it("continues the original agent session after approved gateway exec completes with a non-native external route", async () => {

966981

const agentCalls: Array<Record<string, unknown>> = [];

967982968983

mockAcceptedApprovalFlow({

@@ -975,26 +990,26 @@ describe("exec approvals", () => {

975990

host: "gateway",

976991

ask: "always",

977992

approvalRunningNoticeMs: 0,

978-

sessionKey: "agent:main:discord:channel:123",

993+

sessionKey: "agent:main:feishu:channel:123",

979994

elevated: { enabled: true, allowed: true, defaultLevel: "ask" },

980-

messageProvider: "discord",

995+

messageProvider: "feishu",

981996

currentChannelId: "123",

982997

accountId: "default",

983998

currentThreadTs: "456",

984999

});

9851000986-

const result = await tool.execute("call-gw-followup-discord", {

1001+

const result = await tool.execute("call-gw-followup-feishu", {

9871002

command: "echo ok",

9881003

workdir: process.cwd(),

9891004

});

99010059911006

expect(result.details.status).toBe("approval-pending");

9921007

await expect.poll(() => agentCalls.length, { timeout: 3000, interval: 1 }).toBe(1);

9931008

expectRecordFields(agentCalls[0], {

994-

sessionKey: "agent:main:discord:channel:123",

1009+

sessionKey: "agent:main:feishu:channel:123",

9951010

deliver: true,

9961011

bestEffortDeliver: true,

997-

channel: "discord",

1012+

channel: "feishu",

9981013

to: "123",

9991014

accountId: "default",

10001015

threadId: "456",

@@ -1007,7 +1022,7 @@ describe("exec approvals", () => {

10071022

expect(sendMessage).not.toHaveBeenCalled();

10081023

});

100910241010-

it("auto-continues the same Discord session after approval resolves without a second user turn", async () => {

1025+

it("waits inline for native Discord approval and resumes the same session without a second user turn", async () => {

10111026

const agentCalls: Array<Record<string, unknown>> = [];

10121027

let resolveDecision: ((value: { decision: string }) => void) | undefined;

10131028

const decisionPromise = new Promise<{ decision: string }>((resolve) => {

@@ -1040,31 +1055,26 @@ describe("exec approvals", () => {

10401055

currentThreadTs: "456",

10411056

});

104210571043-

const result = await tool.execute("call-gw-followup-discord-delayed", {

1058+

let settled = false;

1059+

const resultPromise = tool.execute("call-gw-followup-discord-delayed", {

10441060

command: "printf delayed-ok",

10451061

workdir: process.cwd(),

10461062

});

1063+

void resultPromise.then(() => {

1064+

settled = true;

1065+

});

104710661048-

expect(result.details.status).toBe("approval-pending");

1067+

await Promise.resolve();

1068+

expect(settled).toBe(false);

10491069

expect(agentCalls).toHaveLength(0);

1050107010511071

resolveDecision?.({ decision: "allow-once" });

105210721053-

await expect.poll(() => agentCalls.length, { timeout: 3000, interval: 1 }).toBe(1);

1054-

expectRecordFields(agentCalls[0], {

1055-

sessionKey: "agent:main:discord:channel:123",

1056-

deliver: true,

1057-

bestEffortDeliver: true,

1058-

channel: "discord",

1059-

to: "123",

1060-

accountId: "default",

1061-

threadId: "456",

1062-

});

1063-

expect(typeof agentCalls[0]?.message).toBe("string");

1064-

expect(agentCalls[0]?.message).toContain(

1065-

"If the task requires more steps, continue from this result before replying to the user.",

1066-

);

1067-

expect(agentCalls[0]?.message).toContain("delayed-ok");

1073+

const result = await resultPromise;

1074+1075+

expect(result.details.status).toBe("completed");

1076+

expect(getResultText(result)).toContain("delayed-ok");

1077+

expect(agentCalls).toHaveLength(0);

10681078

expect(sendMessage).not.toHaveBeenCalled();

10691079

});

10701080