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

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
V
Visual Studio Blog
C
Check Point Blog
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
量子位
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
M
MIT News - Artificial intelligence
爱范儿
爱范儿
B
Blog RSS Feed
MyScale Blog
MyScale Blog
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
L
LangChain Blog
D
Docker

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: add trajectory bundle export and default-on runtime...
scoootscooob · 2026-04-23 · via Recent Commits to openclaw:main

@@ -47,6 +47,12 @@ import {

4747

buildTurnStartParams,

4848

startOrResumeThread,

4949

} from "./thread-lifecycle.js";

50+

import {

51+

createCodexTrajectoryRecorder,

52+

normalizeCodexTrajectoryError,

53+

recordCodexTrajectoryCompletion,

54+

recordCodexTrajectoryContext,

55+

} from "./trajectory.js";

5056

import { mirrorCodexAppServerTranscript } from "./transcript-mirror.js";

51575258

let clientFactory = defaultCodexAppServerClientFactory;

@@ -129,8 +135,16 @@ export async function runCodexAppServerAttempt(

129135

messages: historyMessages,

130136

ctx: hookContext,

131137

});

138+

const trajectoryRecorder = createCodexTrajectoryRecorder({

139+

attempt: params,

140+

cwd: effectiveWorkspace,

141+

developerInstructions: promptBuild.developerInstructions,

142+

prompt: promptBuild.prompt,

143+

tools: toolBridge.specs,

144+

});

132145

let client: CodexAppServerClient;

133146

let thread: CodexAppServerThreadBinding;

147+

let trajectoryEndRecorded = false;

134148

try {

135149

({ client, thread } = await withCodexStartupTimeout({

136150

timeoutMs: params.timeoutMs,

@@ -154,6 +168,20 @@ export async function runCodexAppServerAttempt(

154168

params.abortSignal?.removeEventListener("abort", abortFromUpstream);

155169

throw error;

156170

}

171+

trajectoryRecorder?.recordEvent("session.started", {

172+

sessionFile: params.sessionFile,

173+

threadId: thread.threadId,

174+

authProfileId: startupAuthProfileId,

175+

workspaceDir: effectiveWorkspace,

176+

toolCount: toolBridge.specs.length,

177+

});

178+

recordCodexTrajectoryContext(trajectoryRecorder, {

179+

attempt: params,

180+

cwd: effectiveWorkspace,

181+

developerInstructions: promptBuild.developerInstructions,

182+

prompt: promptBuild.prompt,

183+

tools: toolBridge.specs,

184+

});

157185158186

let projector: CodexAppServerEventProjector | undefined;

159187

let turnId: string | undefined;

@@ -230,7 +258,23 @@ export async function runCodexAppServerAttempt(

230258

if (!call || call.threadId !== thread.threadId || call.turnId !== turnId) {

231259

return undefined;

232260

}

233-

return toolBridge.handleToolCall(call) as Promise<JsonValue>;

261+

trajectoryRecorder?.recordEvent("tool.call", {

262+

threadId: call.threadId,

263+

turnId: call.turnId,

264+

toolCallId: call.callId,

265+

name: call.tool,

266+

arguments: call.arguments,

267+

});

268+

const response = await toolBridge.handleToolCall(call);

269+

trajectoryRecorder?.recordEvent("tool.result", {

270+

threadId: call.threadId,

271+

turnId: call.turnId,

272+

toolCallId: call.callId,

273+

name: call.tool,

274+

success: response.success,

275+

contentItems: response.contentItems,

276+

});

277+

return response as JsonValue;

234278

});

235279236280

const llmInputEvent = {

@@ -268,6 +312,14 @@ export async function runCodexAppServerAttempt(

268312

{ timeoutMs: params.timeoutMs, signal: runAbortController.signal },

269313

);

270314

} catch (error) {

315+

trajectoryRecorder?.recordEvent("session.ended", {

316+

status: "error",

317+

threadId: thread.threadId,

318+

timedOut,

319+

aborted: runAbortController.signal.aborted,

320+

promptError: normalizeCodexTrajectoryError(error),

321+

});

322+

trajectoryEndRecorded = true;

271323

runAgentHarnessLlmOutputHook({

272324

event: {

273325

runId: params.runId,

@@ -289,10 +341,17 @@ export async function runCodexAppServerAttempt(

289341

});

290342

notificationCleanup();

291343

requestCleanup();

344+

await trajectoryRecorder?.flush();

292345

params.abortSignal?.removeEventListener("abort", abortFromUpstream);

293346

throw error;

294347

}

295348

turnId = turn.turn.id;

349+

trajectoryRecorder?.recordEvent("prompt.submitted", {

350+

threadId: thread.threadId,

351+

turnId,

352+

prompt: promptBuild.prompt,

353+

imagesCount: params.images?.length ?? 0,

354+

});

296355

projector = new CodexAppServerEventProjector(params, thread.threadId, turnId);

297356

const activeTurnId = turnId;

298357

const activeProjector = projector;

@@ -353,6 +412,23 @@ export async function runCodexAppServerAttempt(

353412

const finalAborted = result.aborted || runAbortController.signal.aborted;

354413

const finalPromptError = timedOut ? "codex app-server attempt timed out" : result.promptError;

355414

const finalPromptErrorSource = timedOut ? "prompt" : result.promptErrorSource;

415+

recordCodexTrajectoryCompletion(trajectoryRecorder, {

416+

attempt: params,

417+

result,

418+

threadId: thread.threadId,

419+

turnId: activeTurnId,

420+

timedOut,

421+

yieldDetected,

422+

});

423+

trajectoryRecorder?.recordEvent("session.ended", {

424+

status: finalPromptError ? "error" : finalAborted || timedOut ? "interrupted" : "success",

425+

threadId: thread.threadId,

426+

turnId: activeTurnId,

427+

timedOut,

428+

yieldDetected,

429+

promptError: normalizeCodexTrajectoryError(finalPromptError),

430+

});

431+

trajectoryEndRecorded = true;

356432

await mirrorTranscriptBestEffort({

357433

params,

358434

agentId: sessionAgentId,

@@ -390,6 +466,16 @@ export async function runCodexAppServerAttempt(

390466

promptErrorSource: finalPromptErrorSource,

391467

};

392468

} finally {

469+

if (trajectoryRecorder && !trajectoryEndRecorded) {

470+

trajectoryRecorder.recordEvent("session.ended", {

471+

status: timedOut || runAbortController.signal.aborted ? "interrupted" : "cleanup",

472+

threadId: thread.threadId,

473+

turnId: activeTurnId,

474+

timedOut,

475+

aborted: runAbortController.signal.aborted,

476+

});

477+

}

478+

await trajectoryRecorder?.flush();

393479

clearTimeout(timeout);

394480

notificationCleanup();

395481

requestCleanup();