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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
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
chore: add coarse agent turn timeline spans · openclaw/op...
shakkernerd · 2026-05-07 · via Recent Commits to openclaw:main

@@ -24,6 +24,7 @@ import {

2424

createChildDiagnosticTraceContext,

2525

freezeDiagnosticTraceContext,

2626

} from "../../infra/diagnostic-trace-context.js";

27+

import { measureDiagnosticsTimelineSpan } from "../../infra/diagnostics-timeline.js";

2728

import { enqueueSystemEvent } from "../../infra/system-events.js";

2829

import { CommandLaneClearedError, GatewayDrainingError } from "../../process/command-queue.js";

2930

import { resolveSendPolicy } from "../../sessions/send-policy.js";

@@ -989,6 +990,20 @@ export async function runReplyAgent(params: {

989990

const effectiveShouldFollowup = !effectiveResetTriggered && shouldFollowup;

990991991992

const isHeartbeat = opts?.isHeartbeat === true;

993+

const traceAttributes = {

994+

provider: followupRun.run.provider,

995+

hasSessionKey: Boolean(sessionKey ?? followupRun.run.sessionKey),

996+

isHeartbeat,

997+

queueMode: resolvedQueue.mode,

998+

isActive,

999+

blockStreamingEnabled,

1000+

};

1001+

const traceAgentPhase = <T>(name: string, run: () => Promise<T> | T): Promise<T> =>

1002+

measureDiagnosticsTimelineSpan(name, run, {

1003+

phase: "agent-turn",

1004+

config: followupRun.run.config,

1005+

attributes: traceAttributes,

1006+

});

9921007

const typingSignals = createTypingSignaler({

9931008

typing,

9941009

mode: typingMode,

@@ -1175,40 +1190,44 @@ export async function runReplyAgent(params: {

11751190

try {

11761191

await typingSignals.signalRunStart();

117711921178-

activeSessionEntry = await runPreflightCompactionIfNeeded({

1179-

cfg,

1180-

followupRun,

1181-

promptForEstimate: followupRun.prompt,

1182-

defaultModel,

1183-

agentCfgContextTokens,

1184-

sessionEntry: activeSessionEntry,

1185-

sessionStore: activeSessionStore,

1186-

sessionKey,

1187-

runtimePolicySessionKey,

1188-

storePath,

1189-

isHeartbeat,

1190-

replyOperation,

1191-

});

1193+

activeSessionEntry = await traceAgentPhase("reply.preflight_compaction", () =>

1194+

runPreflightCompactionIfNeeded({

1195+

cfg,

1196+

followupRun,

1197+

promptForEstimate: followupRun.prompt,

1198+

defaultModel,

1199+

agentCfgContextTokens,

1200+

sessionEntry: activeSessionEntry,

1201+

sessionStore: activeSessionStore,

1202+

sessionKey,

1203+

runtimePolicySessionKey,

1204+

storePath,

1205+

isHeartbeat,

1206+

replyOperation,

1207+

}),

1208+

);

11921209

preflightCompactionApplied =

11931210

(activeSessionEntry?.compactionCount ?? 0) > prePreflightCompactionCount;

119412111195-

activeSessionEntry = await runMemoryFlushIfNeeded({

1196-

cfg,

1197-

followupRun,

1198-

promptForEstimate: followupRun.prompt,

1199-

sessionCtx,

1200-

opts,

1201-

defaultModel,

1202-

agentCfgContextTokens,

1203-

resolvedVerboseLevel,

1204-

sessionEntry: activeSessionEntry,

1205-

sessionStore: activeSessionStore,

1206-

sessionKey,

1207-

runtimePolicySessionKey,

1208-

storePath,

1209-

isHeartbeat,

1210-

replyOperation,

1211-

});

1212+

activeSessionEntry = await traceAgentPhase("reply.memory_flush", () =>

1213+

runMemoryFlushIfNeeded({

1214+

cfg,

1215+

followupRun,

1216+

promptForEstimate: followupRun.prompt,

1217+

sessionCtx,

1218+

opts,

1219+

defaultModel,

1220+

agentCfgContextTokens,

1221+

resolvedVerboseLevel,

1222+

sessionEntry: activeSessionEntry,

1223+

sessionStore: activeSessionStore,

1224+

sessionKey,

1225+

runtimePolicySessionKey,

1226+

storePath,

1227+

isHeartbeat,

1228+

replyOperation,

1229+

}),

1230+

);

1212123112131232

runFollowupTurn = createFollowupRunner({

12141233

opts,

@@ -1270,35 +1289,37 @@ export async function runReplyAgent(params: {

1270128912711290

replyOperation.setPhase("running");

12721291

const runStartedAt = Date.now();

1273-

const runOutcome = await runAgentTurnWithFallback({

1274-

commandBody,

1275-

transcriptCommandBody,

1276-

followupRun,

1277-

sessionCtx,

1278-

replyThreading: replyThreadingOverride ?? sessionCtx.ReplyThreading,

1279-

replyOperation,

1280-

opts,

1281-

typingSignals,

1282-

blockReplyPipeline,

1283-

blockStreamingEnabled,

1284-

blockReplyChunking,

1285-

resolvedBlockStreamingBreak,

1286-

applyReplyToMode,

1287-

shouldEmitToolResult,

1288-

shouldEmitToolOutput,

1289-

pendingToolTasks,

1290-

resetSessionAfterCompactionFailure,

1291-

resetSessionAfterRoleOrderingConflict,

1292-

isHeartbeat,

1293-

sessionKey,

1294-

runtimePolicySessionKey,

1295-

getActiveSessionEntry: () => activeSessionEntry,

1296-

activeSessionStore,

1297-

storePath,

1298-

resolvedVerboseLevel,

1299-

toolProgressDetail,

1300-

replyMediaContext,

1301-

});

1292+

const runOutcome = await traceAgentPhase("reply.run_agent_turn", () =>

1293+

runAgentTurnWithFallback({

1294+

commandBody,

1295+

transcriptCommandBody,

1296+

followupRun,

1297+

sessionCtx,

1298+

replyThreading: replyThreadingOverride ?? sessionCtx.ReplyThreading,

1299+

replyOperation,

1300+

opts,

1301+

typingSignals,

1302+

blockReplyPipeline,

1303+

blockStreamingEnabled,

1304+

blockReplyChunking,

1305+

resolvedBlockStreamingBreak,

1306+

applyReplyToMode,

1307+

shouldEmitToolResult,

1308+

shouldEmitToolOutput,

1309+

pendingToolTasks,

1310+

resetSessionAfterCompactionFailure,

1311+

resetSessionAfterRoleOrderingConflict,

1312+

isHeartbeat,

1313+

sessionKey,

1314+

runtimePolicySessionKey,

1315+

getActiveSessionEntry: () => activeSessionEntry,

1316+

activeSessionStore,

1317+

storePath,

1318+

resolvedVerboseLevel,

1319+

toolProgressDetail,

1320+

replyMediaContext,

1321+

}),

1322+

);

1302132313031324

if (runOutcome.kind === "final") {

13041325

if (!replyOperation.result) {