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

推荐订阅源

美团技术团队
T
The Blog of Author Tim Ferriss
C
Check Point Blog
博客园_首页
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
L
LangChain Blog
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
Vercel News
Vercel News
博客园 - Franky
V
V2EX
IT之家
IT之家
U
Unit 42
N
Netflix TechBlog - Medium
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 叶小钗
H
Help Net Security
V
Visual Studio Blog
GbyAI
GbyAI

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
Route Codex message tool replies back to WebChat and TUI ...
pashpashpash · 2026-05-14 · via Recent Commits to openclaw:main

@@ -226,6 +226,9 @@ function normalizeEmbeddedRunAttemptResult(

226226

messagingToolSentTexts?: EmbeddedRunAttemptForRunner["messagingToolSentTexts"] | null;

227227

messagingToolSentMediaUrls?: EmbeddedRunAttemptForRunner["messagingToolSentMediaUrls"] | null;

228228

messagingToolSentTargets?: EmbeddedRunAttemptForRunner["messagingToolSentTargets"] | null;

229+

messagingToolSourceReplyPayloads?:

230+

| EmbeddedRunAttemptForRunner["messagingToolSourceReplyPayloads"]

231+

| null;

229232

itemLifecycle?: EmbeddedRunAttemptForRunner["itemLifecycle"] | null;

230233

};

231234

return {

@@ -236,6 +239,7 @@ function normalizeEmbeddedRunAttemptResult(

236239

messagingToolSentTexts: raw.messagingToolSentTexts ?? [],

237240

messagingToolSentMediaUrls: raw.messagingToolSentMediaUrls ?? [],

238241

messagingToolSentTargets: raw.messagingToolSentTargets ?? [],

242+

messagingToolSourceReplyPayloads: raw.messagingToolSourceReplyPayloads ?? [],

239243

itemLifecycle: raw.itemLifecycle ?? {

240244

startedCount: 0,

241245

completedCount: 0,

@@ -2495,6 +2499,10 @@ export async function runEmbeddedPiAgent(

24952499

suppressToolErrorWarnings: params.suppressToolErrorWarnings,

24962500

inlineToolResultsAllowed: false,

24972501

didSendViaMessagingTool: attempt.didSendViaMessagingTool,

2502+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

2503+

sourceReplyDeliveryMode: params.sourceReplyDeliveryMode,

2504+

agentId: params.agentId,

2505+

runId: params.runId,

24982506

didSendDeterministicApprovalPrompt: attempt.didSendDeterministicApprovalPrompt,

24992507

heartbeatToolResponse: attempt.heartbeatToolResponse,

25002508

});

@@ -2571,6 +2579,7 @@ export async function runEmbeddedPiAgent(

25712579

messagingToolSentTexts: attempt.messagingToolSentTexts,

25722580

messagingToolSentMediaUrls: attempt.messagingToolSentMediaUrls,

25732581

messagingToolSentTargets: attempt.messagingToolSentTargets,

2582+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

25742583

heartbeatToolResponse: attempt.heartbeatToolResponse,

25752584

successfulCronAdds: attempt.successfulCronAdds,

25762585

};

@@ -2788,6 +2797,7 @@ export async function runEmbeddedPiAgent(

27882797

messagingToolSentTexts: attempt.messagingToolSentTexts,

27892798

messagingToolSentMediaUrls: attempt.messagingToolSentMediaUrls,

27902799

messagingToolSentTargets: attempt.messagingToolSentTargets,

2800+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

27912801

heartbeatToolResponse: attempt.heartbeatToolResponse,

27922802

successfulCronAdds: attempt.successfulCronAdds,

27932803

};

@@ -2839,6 +2849,7 @@ export async function runEmbeddedPiAgent(

28392849

messagingToolSentTexts: attempt.messagingToolSentTexts,

28402850

messagingToolSentMediaUrls: attempt.messagingToolSentMediaUrls,

28412851

messagingToolSentTargets: attempt.messagingToolSentTargets,

2852+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

28422853

heartbeatToolResponse: attempt.heartbeatToolResponse,

28432854

successfulCronAdds: attempt.successfulCronAdds,

28442855

};

@@ -2949,6 +2960,7 @@ export async function runEmbeddedPiAgent(

29492960

messagingToolSentTexts: attempt.messagingToolSentTexts,

29502961

messagingToolSentMediaUrls: attempt.messagingToolSentMediaUrls,

29512962

messagingToolSentTargets: attempt.messagingToolSentTargets,

2963+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

29522964

heartbeatToolResponse: attempt.heartbeatToolResponse,

29532965

successfulCronAdds: attempt.successfulCronAdds,

29542966

};

@@ -3064,6 +3076,7 @@ export async function runEmbeddedPiAgent(

30643076

messagingToolSentTexts: attempt.messagingToolSentTexts,

30653077

messagingToolSentMediaUrls: attempt.messagingToolSentMediaUrls,

30663078

messagingToolSentTargets: attempt.messagingToolSentTargets,

3079+

messagingToolSourceReplyPayloads: attempt.messagingToolSourceReplyPayloads,

30673080

heartbeatToolResponse: attempt.heartbeatToolResponse,

30683081

successfulCronAdds: attempt.successfulCronAdds,

30693082

};