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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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
test(gateway): unblock trajectory export live release gat...
vincentkoc · 2026-06-14 · via Recent Commits to openclaw:main

@@ -32,10 +32,12 @@ const DEFAULT_CODEX_MODEL = "openai/gpt-5.5";

3232

type TrajectoryExportApprovalEntry = {

3333

id?: string;

3434

command?: string;

35+

commandArgv?: string[];

3536

commandText?: string;

3637

commandPreview?: string;

3738

request?: {

3839

command?: string;

40+

commandArgv?: string[];

3941

commandText?: string;

4042

commandPreview?: string;

4143

};

@@ -46,6 +48,11 @@ type TrajectoryExportApprovalSummary = {

4648

hasTrajectoryExportCommand: boolean;

4749

};

485051+

type TrajectoryExportSignal = {

52+

approvalId?: string;

53+

instructionText: string;

54+

};

55+4956

function logLiveStep(step: string, details?: Record<string, unknown>): void {

5057

if (!CODEX_HARNESS_DEBUG) {

5158

return;

@@ -212,9 +219,11 @@ function extractAssistantTexts(messages: unknown[]): string[] {

212219

function getTrajectoryExportApprovalCommands(entry: TrajectoryExportApprovalEntry): string[] {

213220

return [

214221

entry.request?.command,

222+

entry.request?.commandArgv?.join(" "),

215223

entry.request?.commandText,

216224

entry.request?.commandPreview,

217225

entry.command,

226+

entry.commandArgv?.join(" "),

218227

entry.commandText,

219228

entry.commandPreview,

220229

].filter((value): value is string => typeof value === "string" && value.trim().length > 0);

@@ -238,18 +247,19 @@ function summarizeTrajectoryExportApproval(

238247

return summary;

239248

}

240249241-

async function waitForTrajectoryExportInstructionText(params: {

250+

async function waitForTrajectoryExportSignal(params: {

242251

client: GatewayClient;

243252

events: EventFrame[];

244253

eventStartIndex: number;

245254

expectedText: string;

246255

runId: string;

247256

sessionKey: string;

248257

timeoutMs: number;

249-

}): Promise<string> {

258+

}): Promise<TrajectoryExportSignal> {

250259

const deadline = Date.now() + params.timeoutMs;

251-

let finalTexts: string[] = [];

252-

let assistantTexts: string[] = [];

260+

let finalTexts: string[] | undefined;

261+

let assistantTexts: string[] | undefined;

262+

let approvalId: string | undefined;

253263

let nextHistoryPollAt = 0;

254264

while (Date.now() < deadline) {

255265

const newEvents = params.events.slice(params.eventStartIndex);

@@ -258,7 +268,7 @@ async function waitForTrajectoryExportInstructionText(params: {

258268

.filter((text): text is string => typeof text === "string" && text.trim().length > 0);

259269

const matchedText = finalTexts.find((text) => text.includes(params.expectedText));

260270

if (matchedText) {

261-

return matchedText;

271+

return { ...(approvalId ? { approvalId } : {}), instructionText: matchedText };

262272

}

263273

if (Date.now() >= nextHistoryPollAt) {

264274

try {

@@ -275,11 +285,22 @@ async function waitForTrajectoryExportInstructionText(params: {

275285

text.includes(params.expectedText),

276286

);

277287

if (matchedHistoryText) {

278-

return matchedHistoryText;

288+

return { ...(approvalId ? { approvalId } : {}), instructionText: matchedHistoryText };

279289

}

280290

} catch {

281291

assistantTexts = [];

282292

}

293+

try {

294+

const approvals = (await params.client.request(

295+

"exec.approval.list",

296+

{},

297+

{ timeoutMs: 10_000 },

298+

)) as TrajectoryExportApprovalEntry[];

299+

const approval = approvals.find(isTrajectoryExportApproval);

300+

if (approval && !approvalId) {

301+

approvalId = await approveTrajectoryExport(params.client, approval);

302+

}

303+

} catch {}

283304

nextHistoryPollAt = Date.now() + 2_000;

284305

}

285306

await new Promise((resolve) => {

@@ -299,7 +320,7 @@ async function waitForTrajectoryExportInstructionText(params: {

299320

}

300321

throw new Error(

301322

`timed out waiting for trajectory export instruction text for ${params.runId}; ` +

302-

`events=${params.events.length}; finalTexts=${formatTextPreview(finalTexts)}; assistantTexts=${formatTextPreview(assistantTexts)}; approvals=${JSON.stringify(approvalSummaries)}`,

323+

`events=${params.events.length}; approved=${approvalId ?? "<none>"}; finalTexts=${formatTextPreview(finalTexts ?? [])}; assistantTexts=${formatTextPreview(assistantTexts ?? [])}; approvals=${JSON.stringify(approvalSummaries)}`,

303324

);

304325

}

305326

@@ -353,11 +374,14 @@ function extractVisibleMessageText(message: unknown): string | undefined {

353374

return text || undefined;

354375

}

355376356-

async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

377+

async function approveTrajectoryExport(

378+

client: GatewayClient,

379+

existingApproval?: TrajectoryExportApprovalEntry,

380+

): Promise<string> {

357381

const startedAt = Date.now();

358-

let approval: TrajectoryExportApprovalEntry | undefined;

382+

let approval: TrajectoryExportApprovalEntry | undefined = existingApproval;

359383

let lastApprovalSummaries: TrajectoryExportApprovalSummary[] = [];

360-

while (Date.now() - startedAt < 60_000) {

384+

while (!approval && Date.now() - startedAt < 60_000) {

361385

const approvals = (await client.request(

362386

"exec.approval.list",

363387

{},

@@ -504,10 +528,10 @@ describeLive("gateway live trajectory export", () => {

504528

exportResponse?.status === "ok" ||

505529

exportResponse?.status === "started",

506530

).toBe(true);

507-

const finalText =

531+

const exportSignal: TrajectoryExportSignal =

508532

typeof exportResponse?.message === "object"

509-

? extractVisibleMessageText(exportResponse.message)

510-

: await waitForTrajectoryExportInstructionText({

533+

? { instructionText: extractVisibleMessageText(exportResponse.message) ?? "" }

534+

: await waitForTrajectoryExportSignal({

511535

client,

512536

events: gatewayEvents,

513537

eventStartIndex: exportEventStartIndex,

@@ -516,13 +540,13 @@ describeLive("gateway live trajectory export", () => {

516540

sessionKey,

517541

timeoutMs: TRAJECTORY_EXPORT_INSTRUCTION_TIMEOUT_MS,

518542

});

519-

expect(finalText).toContain("Trajectory exports can include");

520-

expect(finalText).toContain("through exec approval");

521-

expect(finalText).toContain("Approve once");

522-

const approvalId = await approveTrajectoryExport(client);

543+

expect(exportSignal.instructionText).toContain("Trajectory exports can include");

544+

expect(exportSignal.instructionText).toContain("through exec approval");

545+

expect(exportSignal.instructionText).toContain("Approve once");

546+

const approvalId = exportSignal.approvalId ?? (await approveTrajectoryExport(client));

523547

logLiveStep("export:approved", { approvalId });

524548

await waitForPath(path.join(bundleDir, "events.jsonl"), 60_000);

525-

logLiveStep("export:done", { approvalId, finalText });

549+

logLiveStep("export:done", { approvalId, finalText: exportSignal.instructionText });

526550

const bundleNames = await listDirectoryNames(bundleDir);

527551

for (const expectedName of [

528552

"artifacts.json",