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

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements

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
feat(telegram): use native DM drafts for tool progress · ...
2026-05-19 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ type DispatchReplyWithBufferedBlockDispatcherArgs = Parameters<

1313

>[0];

14141515

const createTelegramDraftStream = vi.hoisted(() => vi.fn());

16+

const createNativeTelegramToolProgressDraft = vi.hoisted(() => vi.fn());

1617

const dispatchReplyWithBufferedBlockDispatcher = vi.hoisted(() =>

1718

vi.fn<(params: DispatchReplyWithBufferedBlockDispatcherArgs) => Promise<unknown>>(),

1819

);

@@ -180,6 +181,8 @@ const telegramDepsForTest: TelegramBotDeps = {

180181

wasSentByBot: wasSentByBot as TelegramBotDeps["wasSentByBot"],

181182

createTelegramDraftStream:

182183

createTelegramDraftStream as TelegramBotDeps["createTelegramDraftStream"],

184+

createNativeTelegramToolProgressDraft:

185+

createNativeTelegramToolProgressDraft as TelegramBotDeps["createNativeTelegramToolProgressDraft"],

183186

deliverReplies: deliverReplies as TelegramBotDeps["deliverReplies"],

184187

deliverInboundReplyWithMessageSendContext:

185188

deliverInboundReplyWithMessageSendContext as TelegramBotDeps["deliverInboundReplyWithMessageSendContext"],

@@ -199,6 +202,7 @@ describe("dispatchTelegramMessage draft streaming", () => {

199202

beforeEach(() => {

200203

resetTelegramReplyFenceForTests();

201204

createTelegramDraftStream.mockReset();

205+

createNativeTelegramToolProgressDraft.mockReset();

202206

dispatchReplyWithBufferedBlockDispatcher.mockReset();

203207

deliverReplies.mockReset();

204208

deliverInboundReplyWithMessageSendContext.mockReset();

@@ -295,6 +299,10 @@ describe("dispatchTelegramMessage draft streaming", () => {

295299

const createDraftStream = (messageId?: number) => createTestDraftStream({ messageId });

296300

const createSequencedDraftStream = (startMessageId = 1001) =>

297301

createSequencedTestDraftStream(startMessageId);

302+

const createNativeToolProgressDraft = (updateResult = true) => ({

303+

update: vi.fn(async () => updateResult),

304+

stop: vi.fn(),

305+

});

298306299307

function setupDraftStreams(params?: { answerMessageId?: number; reasoningMessageId?: number }) {

300308

const answerDraftStream = createDraftStream(params?.answerMessageId);

@@ -1226,6 +1234,185 @@ describe("dispatchTelegramMessage draft streaming", () => {

12261234

expect(deliverReplies).not.toHaveBeenCalled();

12271235

});

122812361237+

it("uses native DM drafts for transient tool progress before answer text", async () => {

1238+

const nativeDraft = createNativeToolProgressDraft();

1239+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1240+

const { answerDraftStream } = setupDraftStreams({ answerMessageId: 2001 });

1241+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(

1242+

async ({ dispatcherOptions, replyOptions }) => {

1243+

await replyOptions?.onToolStart?.({ name: "exec", phase: "start" });

1244+

await replyOptions?.onPartialReply?.({ text: "Done ", delta: "Done " });

1245+

await dispatcherOptions.deliver({ text: "Done answer." }, { kind: "final" });

1246+

return { queuedFinal: true };

1247+

},

1248+

);

1249+1250+

await dispatchWithContext({

1251+

context: createContext(),

1252+

streamMode: "partial",

1253+

telegramCfg: { streaming: { mode: "partial" } },

1254+

});

1255+1256+

expect(createNativeTelegramToolProgressDraft).toHaveBeenCalledWith(

1257+

expect.objectContaining({

1258+

chatId: 123,

1259+

thread: { id: 777, scope: "dm" },

1260+

}),

1261+

);

1262+

expect(nativeDraft.update).toHaveBeenCalledWith(expect.stringContaining("Exec"));

1263+

expect(nativeDraft.update).toHaveBeenCalledWith(expect.not.stringContaining("`"));

1264+

expect(answerDraftStream.update).toHaveBeenNthCalledWith(1, "Done ");

1265+

expect(answerDraftStream.update).toHaveBeenLastCalledWith("Done answer.");

1266+

expect(answerDraftStream.update).not.toHaveBeenCalledWith(expect.stringContaining("Exec"));

1267+

expect(nativeDraft.stop).toHaveBeenCalled();

1268+

});

1269+1270+

it("falls back to edited preview tool progress when native DM draft update fails", async () => {

1271+

const nativeDraft = createNativeToolProgressDraft(false);

1272+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1273+

const { answerDraftStream } = setupDraftStreams({ answerMessageId: 2001 });

1274+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(

1275+

async ({ dispatcherOptions, replyOptions }) => {

1276+

await replyOptions?.onToolStart?.({ name: "exec", phase: "start" });

1277+

await dispatcherOptions.deliver({ text: "Done answer." }, { kind: "final" });

1278+

return { queuedFinal: true };

1279+

},

1280+

);

1281+1282+

await dispatchWithContext({

1283+

context: createContext(),

1284+

streamMode: "partial",

1285+

telegramCfg: { streaming: { mode: "partial" } },

1286+

});

1287+1288+

expect(nativeDraft.update).toHaveBeenCalledWith(expect.stringContaining("Exec"));

1289+

expect(answerDraftStream.update).toHaveBeenNthCalledWith(1, expect.stringContaining("Exec"));

1290+

expect(answerDraftStream.update).toHaveBeenLastCalledWith("Done answer.");

1291+

});

1292+1293+

it("does not hide durable tool media in native DM drafts", async () => {

1294+

const nativeDraft = createNativeToolProgressDraft();

1295+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1296+

setupDraftStreams({ answerMessageId: 2001 });

1297+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(async ({ dispatcherOptions }) => {

1298+

await dispatcherOptions.deliver(

1299+

{ text: "Rendered chart", mediaUrl: "/tmp/chart.png" },

1300+

{ kind: "tool" },

1301+

);

1302+

return { queuedFinal: true };

1303+

});

1304+1305+

await dispatchWithContext({

1306+

context: createContext(),

1307+

streamMode: "partial",

1308+

telegramCfg: { streaming: { mode: "partial" } },

1309+

});

1310+1311+

expect(nativeDraft.update).not.toHaveBeenCalled();

1312+

expectDeliveredReply(0, { text: "Rendered chart", mediaUrl: "/tmp/chart.png" });

1313+

});

1314+1315+

it("does not hide durable tool errors in native DM drafts", async () => {

1316+

const nativeDraft = createNativeToolProgressDraft();

1317+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1318+

setupDraftStreams({ answerMessageId: 2001 });

1319+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(async ({ dispatcherOptions }) => {

1320+

await dispatcherOptions.deliver({ text: "Tool failed", isError: true }, { kind: "tool" });

1321+

return { queuedFinal: true };

1322+

});

1323+1324+

await dispatchWithContext({

1325+

context: createContext(),

1326+

streamMode: "partial",

1327+

telegramCfg: { streaming: { mode: "partial" } },

1328+

});

1329+1330+

expect(nativeDraft.update).not.toHaveBeenCalled();

1331+

expectDeliveredReply(0, { text: "Tool failed", isError: true });

1332+

});

1333+1334+

it("does not hide exec approval payloads in native DM drafts", async () => {

1335+

const nativeDraft = createNativeToolProgressDraft();

1336+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1337+

const { answerDraftStream } = setupDraftStreams({ answerMessageId: 2001 });

1338+

const execApproval = { id: "approval-1", command: "pnpm test" };

1339+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(async ({ dispatcherOptions }) => {

1340+

await dispatcherOptions.deliver(

1341+

{

1342+

text: "Approve command?",

1343+

channelData: { execApproval },

1344+

},

1345+

{ kind: "tool" },

1346+

);

1347+

return { queuedFinal: true };

1348+

});

1349+1350+

await dispatchWithContext({

1351+

context: createContext(),

1352+

streamMode: "partial",

1353+

telegramCfg: { streaming: { mode: "partial" } },

1354+

});

1355+1356+

expect(nativeDraft.update).not.toHaveBeenCalled();

1357+

expect(answerDraftStream.update).toHaveBeenCalledWith("Approve command?");

1358+

});

1359+1360+

it("does not use native tool progress drafts in groups", async () => {

1361+

setupDraftStreams({ answerMessageId: 2001 });

1362+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(

1363+

async ({ dispatcherOptions, replyOptions }) => {

1364+

await replyOptions?.onToolStart?.({ name: "exec", phase: "start" });

1365+

await dispatcherOptions.deliver({ text: "Done answer." }, { kind: "final" });

1366+

return { queuedFinal: true };

1367+

},

1368+

);

1369+1370+

await dispatchWithContext({

1371+

context: createContext({

1372+

ctxPayload: {

1373+

SessionKey: "agent:main:telegram:group:-100123",

1374+

ChatType: "group",

1375+

} as unknown as TelegramMessageContext["ctxPayload"],

1376+

msg: {

1377+

chat: { id: -100123, type: "supergroup" },

1378+

message_id: 99,

1379+

} as unknown as TelegramMessageContext["msg"],

1380+

chatId: -100123,

1381+

isGroup: true,

1382+

threadSpec: { id: undefined, scope: "none" },

1383+

}),

1384+

streamMode: "partial",

1385+

telegramCfg: { streaming: { mode: "partial" } },

1386+

});

1387+1388+

expect(createNativeTelegramToolProgressDraft).not.toHaveBeenCalled();

1389+

});

1390+1391+

it("does not hide text-only tool output after answer streaming starts", async () => {

1392+

const nativeDraft = createNativeToolProgressDraft();

1393+

createNativeTelegramToolProgressDraft.mockReturnValue(nativeDraft);

1394+

const { answerDraftStream } = setupDraftStreams({ answerMessageId: 2001 });

1395+

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(

1396+

async ({ dispatcherOptions, replyOptions }) => {

1397+

await replyOptions?.onPartialReply?.({ text: "Partial answer" });

1398+

await dispatcherOptions.deliver({ text: "Tool result after partial" }, { kind: "tool" });

1399+

return { queuedFinal: true };

1400+

},

1401+

);

1402+1403+

await dispatchWithContext({

1404+

context: createContext(),

1405+

streamMode: "partial",

1406+

telegramCfg: { streaming: { mode: "partial" } },

1407+

});

1408+1409+

expect(nativeDraft.update).not.toHaveBeenCalledWith(

1410+

expect.stringContaining("Tool result after partial"),

1411+

);

1412+

expect(answerDraftStream.update).toHaveBeenNthCalledWith(1, "Partial answer");

1413+

expect(answerDraftStream.update).toHaveBeenNthCalledWith(2, "Tool result after partial");

1414+

});

1415+12291416

it("rotates the answer stream only after a finalized assistant message", async () => {

12301417

const { answerDraftStream } = setupDraftStreams({ answerMessageId: 2001 });

12311418

dispatchReplyWithBufferedBlockDispatcher.mockImplementation(