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

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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(gateway): deliver command block replies in webchat · ...
vincentkoc · 2026-06-14 · via Recent Commits to openclaw:main

@@ -165,24 +165,7 @@ async function waitForPath(filePath: string, timeoutMs = 60_000): Promise<void>

165165

throw new Error(`timed out waiting for ${filePath}`);

166166

}

167167168-

function extractAssistantTexts(messages: unknown[]): string[] {

169-

const texts: string[] = [];

170-

for (const entry of messages) {

171-

if (!entry || typeof entry !== "object") {

172-

continue;

173-

}

174-

if ((entry as { role?: unknown }).role !== "assistant") {

175-

continue;

176-

}

177-

const text = extractFirstTextBlock(entry);

178-

if (typeof text === "string" && text.trim().length > 0) {

179-

texts.push(text);

180-

}

181-

}

182-

return texts;

183-

}

184-185-

function formatAssistantTextPreview(texts: string[], maxChars = 800): string {

168+

function formatTextPreview(texts: string[], maxChars = 800): string {

186169

const combined = texts.join("\n\n").trim();

187170

if (!combined) {

188171

return "<none>";

@@ -191,48 +174,28 @@ function formatAssistantTextPreview(texts: string[], maxChars = 800): string {

191174

}

192175193176

async function waitForTrajectoryExportInstructionText(params: {

194-

client: GatewayClient;

195177

events: EventFrame[];

196178

expectedText: string;

197179

runId: string;

198-

sessionKey: string;

199180

timeoutMs: number;

200181

}): Promise<string> {

201182

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

202-

let lastAssistantTexts: string[] = [];

183+

let finalTexts: string[] = [];

203184

while (Date.now() < deadline) {

204-

const eventText = params.events

185+

finalTexts = params.events

205186

.map((event) => extractChatFinalText(event, params.runId))

206-

.find(Boolean);

207-

if (eventText) {

208-

return eventText;

209-

}

210-

const sessionEventText = params.events

211-

.map((event) => extractChatFinalTextForSession(event, params.sessionKey))

212-

.find((text) => text?.includes(params.expectedText));

213-

if (sessionEventText) {

214-

return sessionEventText;

215-

}

216-

const history: { messages?: unknown[] } = await params.client.request(

217-

"chat.history",

218-

{

219-

sessionKey: params.sessionKey,

220-

limit: 24,

221-

},

222-

{ timeoutMs: 10_000 },

223-

);

224-

lastAssistantTexts = extractAssistantTexts(history.messages ?? []);

225-

const historyText = lastAssistantTexts.find((text) => text.includes(params.expectedText));

226-

if (historyText) {

227-

return historyText;

187+

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

188+

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

189+

if (matchedText) {

190+

return matchedText;

228191

}

229192

await new Promise((resolve) => {

230193

setTimeout(resolve, 500);

231194

});

232195

}

233196

throw new Error(

234197

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

235-

`events=${params.events.length}; assistantTexts=${formatAssistantTextPreview(lastAssistantTexts)}`,

198+

`events=${params.events.length}; finalTexts=${formatTextPreview(finalTexts)}`,

236199

);

237200

}

238201

@@ -248,41 +211,14 @@ function extractChatFinalText(event: EventFrame, runId: string): string | undefi

248211

if (record.runId !== runId || record.state !== "final") {

249212

return undefined;

250213

}

251-

return extractChatFinalRecordText(record);

252-

}

253-254-

function extractChatFinalTextForSession(event: EventFrame, sessionKey: string): string | undefined {

255-

if (event.event !== "chat") {

256-

return undefined;

257-

}

258-

const payload = event.payload;

259-

if (!payload || typeof payload !== "object") {

260-

return undefined;

261-

}

262-

const record = payload as Record<string, unknown>;

263-

if (record.sessionKey !== sessionKey || record.state !== "final") {

264-

return undefined;

265-

}

266-

return extractChatFinalRecordText(record);

267-

}

268-269-

function extractChatFinalRecordText(record: Record<string, unknown>): string | undefined {

270214

const message = record.message;

271215

if (!message || typeof message !== "object") {

272216

return undefined;

273217

}

274-

const messageRecord = message as Record<string, unknown>;

275-

if (typeof messageRecord.text === "string" && messageRecord.text.trim()) {

276-

return messageRecord.text;

277-

}

278-

const content = Array.isArray(messageRecord.content) ? messageRecord.content : [];

279-

return content

280-

.map((entry) =>

281-

entry && typeof entry === "object" ? (entry as Record<string, unknown>).text : undefined,

282-

)

283-

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

284-

.join("\n")

285-

.trim();

218+

const messageRecord = message as { text?: unknown };

219+

return typeof messageRecord.text === "string"

220+

? messageRecord.text

221+

: extractFirstTextBlock(message);

286222

}

287223288224

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

@@ -295,6 +231,7 @@ async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

295231

};

296232

}

297233

| undefined;

234+

let lastApprovalCommands: string[] = [];

298235

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

299236

const approvals = (await client.request(

300237

"exec.approval.list",

@@ -306,6 +243,9 @@ async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

306243

command?: string;

307244

};

308245

}>;

246+

lastApprovalCommands = approvals

247+

.map((entry) => entry.request?.command)

248+

.filter((command): command is string => typeof command === "string");

309249

approval = approvals.find((entry) =>

310250

entry.request?.command?.includes("sessions export-trajectory"),

311251

);

@@ -316,11 +256,12 @@ async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

316256

setTimeout(resolve, 500);

317257

});

318258

}

319-

expect(typeof approval?.id).toBe("string");

320-

expect(approval?.request?.command).toContain("sessions export-trajectory");

321259

if (!approval?.id) {

322-

throw new Error("expected trajectory export approval id");

260+

throw new Error(

261+

`expected trajectory export approval id; approvals=${JSON.stringify(lastApprovalCommands)}`,

262+

);

323263

}

264+

expect(approval.request?.command).toContain("sessions export-trajectory");

324265

await client.request(

325266

"exec.approval.resolve",

326267

{ id: approval.id, decision: "allow-once" },

@@ -448,20 +389,18 @@ describeLive("gateway live trajectory export", () => {

448389

typeof exportResponse?.message === "object"

449390

? extractFirstTextBlock(exportResponse.message)

450391

: await waitForTrajectoryExportInstructionText({

451-

client,

452392

events: gatewayEvents,

453393

expectedText: "Trajectory exports can include",

454394

runId: exportRunId,

455-

sessionKey,

456395

timeoutMs: 60_000,

457396

});

458397

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

459398

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

399+

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

460400

const approvalId = await approveTrajectoryExport(client);

461401

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

462402

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

463-

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

464-

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

403+

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

465404

const bundleNames = await listDirectoryNames(bundleDir);

466405

for (const expectedName of [

467406

"artifacts.json",