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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
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(agents): keep delayed sessions_send replies alive (#7...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -1098,6 +1098,174 @@ describe("sessions tools", () => {

10981098

});

10991099

});

110011001101+

it("sessions_send keeps delayed requester replies alive after a wait timeout", async () => {

1102+

const calls: Array<{ method?: string; params?: unknown }> = [];

1103+

const requesterKey = "agent:main:main";

1104+

const targetKey = "agent:director1:main";

1105+

let targetWaitCount = 0;

1106+

callGatewayMock.mockImplementation(async (opts: unknown) => {

1107+

const request = opts as { method?: string; params?: unknown };

1108+

calls.push(request);

1109+

if (request.method === "agent") {

1110+

const params = request.params as { sessionKey?: string } | undefined;

1111+

if (params?.sessionKey === targetKey) {

1112+

return { runId: "run-target", status: "accepted", acceptedAt: 2000 };

1113+

}

1114+

if (params?.sessionKey === requesterKey) {

1115+

return { runId: "run-requester", status: "accepted", acceptedAt: 2001 };

1116+

}

1117+

}

1118+

if (request.method === "agent.wait") {

1119+

const params = request.params as { runId?: string } | undefined;

1120+

if (params?.runId === "run-target") {

1121+

targetWaitCount += 1;

1122+

return targetWaitCount === 1

1123+

? { runId: "run-target", status: "timeout" }

1124+

: { runId: "run-target", status: "ok" };

1125+

}

1126+

if (params?.runId === "run-requester") {

1127+

return { runId: "run-requester", status: "ok" };

1128+

}

1129+

}

1130+

if (request.method === "chat.history") {

1131+

const params = request.params as { sessionKey?: string } | undefined;

1132+

if (params?.sessionKey === targetKey && targetWaitCount > 1) {

1133+

return {

1134+

messages: [

1135+

{

1136+

role: "assistant",

1137+

content: [{ type: "text", text: "late director reply" }],

1138+

timestamp: 20,

1139+

},

1140+

],

1141+

};

1142+

}

1143+

if (params?.sessionKey === requesterKey) {

1144+

return {

1145+

messages: [

1146+

{

1147+

role: "assistant",

1148+

content: [{ type: "text", text: "requester saw director" }],

1149+

timestamp: 21,

1150+

},

1151+

],

1152+

};

1153+

}

1154+

return { messages: [] };

1155+

}

1156+

return {};

1157+

});

1158+1159+

const tool = createOpenClawTools({

1160+

agentSessionKey: requesterKey,

1161+

agentChannel: "discord",

1162+

config: {

1163+

...TEST_CONFIG,

1164+

session: {

1165+

...TEST_CONFIG.session,

1166+

agentToAgent: { maxPingPongTurns: 1 },

1167+

},

1168+

},

1169+

}).find((candidate) => candidate.name === "sessions_send");

1170+

expect(tool).toBeDefined();

1171+

if (!tool) {

1172+

throw new Error("missing sessions_send tool");

1173+

}

1174+1175+

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

1176+

sessionKey: targetKey,

1177+

message: "ping",

1178+

timeoutSeconds: 1,

1179+

});

1180+

expect(result.details).toMatchObject({

1181+

status: "accepted",

1182+

sessionKey: targetKey,

1183+

delivery: { status: "pending", mode: "announce" },

1184+

});

1185+1186+

await vi.waitFor(

1187+

() => {

1188+

const requesterReplyCall = calls.find(

1189+

(call) =>

1190+

call.method === "agent" &&

1191+

(call.params as { sessionKey?: string } | undefined)?.sessionKey === requesterKey,

1192+

);

1193+

expect(requesterReplyCall).toBeDefined();

1194+

},

1195+

{ timeout: 2_000, interval: 5 },

1196+

);

1197+1198+

const requesterReplyCall = calls.find(

1199+

(call) =>

1200+

call.method === "agent" &&

1201+

(call.params as { sessionKey?: string } | undefined)?.sessionKey === requesterKey,

1202+

);

1203+

const replyParams = requesterReplyCall?.params as

1204+

| {

1205+

extraSystemPrompt?: string;

1206+

inputProvenance?: { sourceSessionKey?: string };

1207+

message?: string;

1208+

sessionKey?: string;

1209+

}

1210+

| undefined;

1211+

expect(replyParams).toMatchObject({

1212+

sessionKey: requesterKey,

1213+

inputProvenance: { sourceSessionKey: targetKey },

1214+

});

1215+

expect(replyParams?.message).toContain("late director reply");

1216+

expect(replyParams?.extraSystemPrompt).toContain("Agent-to-agent reply step");

1217+

expect(replyParams?.extraSystemPrompt).toContain("Current agent: Agent 1 (requester)");

1218+

expect(calls.find((call) => call.method === "send")).toBeUndefined();

1219+

});

1220+1221+

it("sessions_send preserves terminal timeouts without starting A2A", async () => {

1222+

const calls: Array<{ method?: string; params?: unknown }> = [];

1223+

const requesterKey = "agent:main:main";

1224+

const targetKey = "agent:director1:main";

1225+

callGatewayMock.mockImplementation(async (opts: unknown) => {

1226+

const request = opts as { method?: string; params?: unknown };

1227+

calls.push(request);

1228+

if (request.method === "agent") {

1229+

return { runId: "run-terminal", status: "accepted", acceptedAt: 2000 };

1230+

}

1231+

if (request.method === "agent.wait") {

1232+

return {

1233+

runId: "run-terminal",

1234+

status: "timeout",

1235+

endedAt: 3000,

1236+

stopReason: "timeout",

1237+

error: "agent run timed out",

1238+

};

1239+

}

1240+

if (request.method === "chat.history") {

1241+

return { messages: [] };

1242+

}

1243+

return {};

1244+

});

1245+1246+

const tool = createOpenClawTools({

1247+

agentSessionKey: requesterKey,

1248+

agentChannel: "discord",

1249+

}).find((candidate) => candidate.name === "sessions_send");

1250+

expect(tool).toBeDefined();

1251+

if (!tool) {

1252+

throw new Error("missing sessions_send tool");

1253+

}

1254+1255+

const result = await tool.execute("call-terminal", {

1256+

sessionKey: targetKey,

1257+

message: "ping",

1258+

timeoutSeconds: 1,

1259+

});

1260+

expect(result.details).toMatchObject({

1261+

status: "timeout",

1262+

error: "agent run timed out",

1263+

sessionKey: targetKey,

1264+

});

1265+

await new Promise((resolve) => setTimeout(resolve, 0));

1266+

expect(calls.filter((call) => call.method === "agent")).toHaveLength(1);

1267+

});

1268+11011269

it("sessions_send skips duplicate A2A delivery for waited parent-owned native subagents", async () => {

11021270

const calls: Array<{ method?: string; params?: unknown }> = [];

11031271

const requesterKey = "agent:main:discord:direct:parent";