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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
美团技术团队
腾讯CDC
博客园 - Franky
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
博客园_首页
V
V2EX
Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss

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(reply): deliver final reply when queued follow-up cla...
sandieman2 · 2026-06-15 · via Recent Commits to openclaw:main

@@ -6,6 +6,8 @@ import type { AgentToolResult } from "openclaw/plugin-sdk/agent-core";

66

import {

77

createAgentToolResultMiddlewareRunner,

88

createCodexAppServerToolResultExtensionRunner,

9+

extractMessagingToolSend,

10+

extractMessagingToolSendResult,

911

extractToolResultMediaArtifact,

1012

filterToolResultMediaUrls,

1113

HEARTBEAT_RESPONSE_TOOL_NAME,

@@ -51,6 +53,12 @@ type CodexDynamicToolHookContext = {

5153

sessionKey?: string;

5254

runId?: string;

5355

channelId?: string;

56+

currentChannelProvider?: string;

57+

currentChannelId?: string;

58+

currentMessagingTarget?: string;

59+

currentThreadId?: string;

60+

replyToMode?: "off" | "first" | "all" | "batched";

61+

hasRepliedRef?: { value: boolean };

5462

};

55635664

type CodexToolResultHookContext = Omit<CodexDynamicToolHookContext, "config">;

@@ -67,6 +75,22 @@ type CodexDynamicToolSchemaQuarantine = {

6775

violations: readonly string[];

6876

};

697778+

function applyCurrentMessageProvider(

79+

toolName: string,

80+

args: Record<string, unknown>,

81+

currentProvider: string | undefined,

82+

): Record<string, unknown> {

83+

const hasProvider =

84+

typeof args.provider === "string" && args.provider.trim().length > 0

85+

? true

86+

: typeof args.channel === "string" && args.channel.trim().length > 0;

87+

const provider = currentProvider?.trim();

88+

if (toolName !== "message" || hasProvider || !provider) {

89+

return args;

90+

}

91+

return { ...args, provider };

92+

}

93+7094

/** Runtime bridge returned to Codex app-server attempt code. */

7195

export type CodexDynamicToolBridge = {

7296

availableSpecs: CodexDynamicToolSpec[];

@@ -213,9 +237,30 @@ export function createCodexDynamicToolBridge(params: {

213237

// Prepare before marking side-effect evidence; argument preparation can

214238

// fail without the target tool actually starting.

215239

const preparedArgs = tool.prepareArguments ? tool.prepareArguments(args) : args;

240+

const telemetryArgs = isRecord(preparedArgs) ? preparedArgs : args;

241+

const messagingTelemetryArgs = applyCurrentMessageProvider(

242+

toolName,

243+

telemetryArgs,

244+

params.hookContext?.currentChannelProvider,

245+

);

246+

const messagingTarget =

247+

isMessagingTool(toolName) && isMessagingToolSendAction(toolName, telemetryArgs)

248+

? extractMessagingToolSend(toolName, messagingTelemetryArgs, {

249+

config: params.hookContext?.config,

250+

currentChannelId: params.hookContext?.currentChannelId,

251+

currentMessagingTarget: params.hookContext?.currentMessagingTarget,

252+

currentThreadId: params.hookContext?.currentThreadId,

253+

replyToMode: params.hookContext?.replyToMode,

254+

hasRepliedRef: params.hookContext?.hasRepliedRef,

255+

})

256+

: undefined;

216257

didStartExecution = true;

217258

const rawResult = await tool.execute(call.callId, preparedArgs, signal);

218259

const rawIsError = isCodexToolResultError(rawResult);

260+

const confirmedMessagingTarget =

261+

!rawIsError && messagingTarget

262+

? extractMessagingToolSendResult(messagingTarget, rawResult)

263+

: messagingTarget;

219264

const middlewareResult = await middlewareRunner.applyToolResultMiddleware({

220265

threadId: call.threadId,

221266

turnId: call.turnId,

@@ -237,11 +282,12 @@ export function createCodexDynamicToolBridge(params: {

237282

notifyAgentToolResult(options?.onAgentToolResult, toolName, result, resultIsError);

238283

collectToolTelemetry({

239284

toolName,

240-

args,

285+

args: telemetryArgs,

241286

result,

242287

mediaTrustResult: rawResult,

243288

telemetry,

244289

isError: resultIsError,

290+

messagingTarget: confirmedMessagingTarget,

245291

});

246292

void runAgentHarnessAfterToolCallHook({

247293

toolName,

@@ -631,6 +677,7 @@ function collectToolTelemetry(params: {

631677

mediaTrustResult?: AgentToolResult<unknown>;

632678

telemetry: CodexDynamicToolBridge["telemetry"];

633679

isError: boolean;

680+

messagingTarget?: MessagingToolSend;

634681

}): void {

635682

if (params.isError) {

636683

return;

@@ -683,11 +730,13 @@ function collectToolTelemetry(params: {

683730

const mediaUrls = collectMediaUrls(params.args);

684731

params.telemetry.messagingToolSentMediaUrls.push(...mediaUrls);

685732

params.telemetry.messagingToolSentTargets.push({

686-

tool: params.toolName,

687-

provider: readFirstString(params.args, ["provider", "channel"]) ?? params.toolName,

688-

accountId: readFirstString(params.args, ["accountId", "account_id"]),

689-

to: readFirstString(params.args, ["to", "target", "recipient"]),

690-

threadId: readFirstString(params.args, ["threadId", "thread_id", "messageThreadId"]),

733+

...(params.messagingTarget ?? {

734+

tool: params.toolName,

735+

provider: readFirstString(params.args, ["provider", "channel"]) ?? params.toolName,

736+

accountId: readFirstString(params.args, ["accountId", "account_id"]),

737+

to: readFirstString(params.args, ["to", "target", "recipient"]),

738+

threadId: readFirstString(params.args, ["threadId", "thread_id", "messageThreadId"]),

739+

}),

691740

...(text ? { text } : {}),

692741

...(mediaUrls.length > 0 ? { mediaUrls } : {}),

693742

});