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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Last Week in AI
Last Week in AI
腾讯CDC
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
I
InfoQ
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
H
Help Net Security
T
Tailwind CSS Blog
美团技术团队
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
P
Proofpoint News 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: add message tool delivery hint to inbound context (#...
pashpashpash · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -371,6 +371,15 @@ describe("runPreparedReply media-only handling", () => {

371371

expect(directContextParams?.sessionCtx?.Provider).toBe("telegram");

372372

expect(directContextParams?.sessionCtx?.ChatType).toBe("direct");

373373

expect(directContextParams?.sourceReplyDeliveryMode).toBe("message_tool_only");

374+

expect(buildInboundUserContextPrefix).toHaveBeenCalledWith(

375+

expect.objectContaining({

376+

ChatType: "direct",

377+

OriginatingChannel: "telegram",

378+

OriginatingTo: "telegram-direct-test-id",

379+

}),

380+

expect.anything(),

381+

{ sourceReplyDeliveryMode: "message_tool_only" },

382+

);

374383

});

375384
376385

it.each(["direct", "dm"] as const)(

Original file line numberDiff line numberDiff line change

@@ -618,6 +618,7 @@ export async function runPreparedReply(

618618

}

619619

: { ...sessionCtx, ThreadStarterBody: undefined },

620620

envelopeOptions,

621+

{ sourceReplyDeliveryMode: opts?.sourceReplyDeliveryMode },

621622

);

622623

const inboundUserContextPromptJoiner = resolveInboundUserContextPromptJoiner(sessionCtx);

623624

const hasUserBody =

Original file line numberDiff line numberDiff line change

@@ -287,6 +287,40 @@ describe("buildInboundUserContextPrefix", () => {

287287

expect(conversationInfo["conversation_label"]).toBeUndefined();

288288

});

289289
290+

it("adds delivery guidance beside inbound source context for message-tool-only turns", () => {

291+

const text = buildInboundUserContextPrefix(

292+

{

293+

ChatType: "direct",

294+

OriginatingChannel: "telegram",

295+

OriginatingTo: "telegram:849985193",

296+

MessageSid: "776",

297+

SenderName: "Nik",

298+

} as TemplateContext,

299+

undefined,

300+

{ sourceReplyDeliveryMode: "message_tool_only" },

301+

);

302+
303+

expect(text).toContain("Delivery: to send a message, use the `message` tool.");

304+

expect(text.indexOf("Delivery:")).toBeLessThan(text.indexOf("Conversation info"));

305+

expect(text).toContain("Conversation info (untrusted metadata):");

306+

});

307+
308+

it("does not add delivery guidance for automatic source delivery", () => {

309+

const text = buildInboundUserContextPrefix(

310+

{

311+

ChatType: "direct",

312+

OriginatingChannel: "telegram",

313+

OriginatingTo: "telegram:849985193",

314+

MessageSid: "776",

315+

} as TemplateContext,

316+

undefined,

317+

{ sourceReplyDeliveryMode: "automatic" },

318+

);

319+
320+

expect(text).not.toContain("Delivery: to send a message");

321+

expect(text).toContain("Conversation info (untrusted metadata):");

322+

});

323+
290324

it("includes message identifiers for direct chats when channel is inferred from Provider", () => {

291325

const text = buildInboundUserContextPrefix({

292326

ChatType: "direct",

Original file line numberDiff line numberDiff line change

@@ -7,11 +7,17 @@ import { normalizeOptionalString } from "../../shared/string-coerce.js";

77

import { truncateUtf16Safe } from "../../utils.js";

88

import type { EnvelopeFormatOptions } from "../envelope.js";

99

import { formatEnvelopeTimestamp } from "../envelope.js";

10+

import type { SourceReplyDeliveryMode } from "../get-reply-options.types.js";

1011

import type { TemplateContext } from "../templating.js";

1112
1213

const MAX_UNTRUSTED_JSON_STRING_CHARS = 2_000;

1314

const MAX_UNTRUSTED_HISTORY_ENTRIES = 20;

1415

const MAX_UNTRUSTED_TRANSCRIPT_FIELD_CHARS = 500;

16+

const MESSAGE_TOOL_DELIVERY_HINT = "Delivery: to send a message, use the `message` tool.";

17+
18+

type InboundUserContextPrefixOptions = {

19+

sourceReplyDeliveryMode?: SourceReplyDeliveryMode;

20+

};

1521
1622

function stripNullBytes(value: string): string {

1723

return value.replaceAll("\u0000", "");

@@ -411,8 +417,12 @@ export function buildInboundMetaSystemPrompt(

411417

export function buildInboundUserContextPrefix(

412418

ctx: TemplateContext,

413419

envelope?: EnvelopeFormatOptions,

420+

options?: InboundUserContextPrefixOptions,

414421

): string {

415422

const blocks: string[] = [];

423+

if (options?.sourceReplyDeliveryMode === "message_tool_only") {

424+

blocks.push(MESSAGE_TOOL_DELIVERY_HINT);

425+

}

416426

const chatType = normalizeChatType(ctx.ChatType);

417427

const isDirect = !chatType || chatType === "direct";

418428

const directChannelValue = resolveInboundChannel(ctx);