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

推荐订阅源

V
Visual Studio Blog
N
Netflix TechBlog - Medium
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
IT之家
IT之家
博客园 - Franky
雷峰网
雷峰网
博客园 - 聂微东
腾讯CDC
M
MIT News - Artificial intelligence
B
Blog RSS Feed
博客园_首页
罗磊的独立博客
S
SegmentFault 最新的问题
I
InfoQ
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
D
Docker
宝玉的分享
宝玉的分享
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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): preserve slash command media replies · open...
vincentkoc · 2026-06-14 · via Recent Commits to openclaw:main

@@ -6,7 +6,6 @@ import { afterEach, describe, expect, it } from "vitest";

66

import type { EventFrame } from "../../packages/gateway-protocol/src/index.js";

77

import { isLiveTestEnabled } from "../agents/live-test-helpers.js";

88

import type { OpenClawConfig } from "../config/config.js";

9-

import { extractFirstTextBlock } from "../shared/chat-message-content.js";

109

import { GatewayClient } from "./client.js";

1110

import {

1211

connectTestGatewayClient,

@@ -215,10 +214,34 @@ function extractChatFinalText(event: EventFrame, runId: string): string | undefi

215214

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

216215

return undefined;

217216

}

218-

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

219-

return typeof messageRecord.text === "string"

220-

? messageRecord.text

221-

: extractFirstTextBlock(message);

217+

return extractVisibleMessageText(message);

218+

}

219+220+

function extractVisibleMessageText(message: unknown): string | undefined {

221+

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

222+

return undefined;

223+

}

224+

const record = message as { text?: unknown; content?: unknown };

225+

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

226+

return record.text;

227+

}

228+

if (typeof record.content === "string" && record.content.trim()) {

229+

return record.content;

230+

}

231+

if (!Array.isArray(record.content)) {

232+

return undefined;

233+

}

234+

const text = record.content

235+

.map((block) => {

236+

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

237+

return "";

238+

}

239+

const entry = block as { type?: unknown; text?: unknown };

240+

return entry.type === "text" && typeof entry.text === "string" ? entry.text : "";

241+

})

242+

.filter((value) => value.trim())

243+

.join("\n");

244+

return text || undefined;

222245

}

223246224247

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

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

231254

};

232255

}

233256

| undefined;

234-

let lastApprovalCommands: string[] = [];

257+

let lastApprovalSummaries: Array<{ id?: string; hasTrajectoryExportCommand: boolean }> = [];

235258

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

236259

const approvals = (await client.request(

237260

"exec.approval.list",

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

243266

command?: string;

244267

};

245268

}>;

246-

lastApprovalCommands = approvals

247-

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

248-

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

269+

lastApprovalSummaries = approvals.map((entry) => ({

270+

...(entry.id ? { id: entry.id } : {}),

271+

hasTrajectoryExportCommand: Boolean(

272+

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

273+

),

274+

}));

249275

approval = approvals.find((entry) =>

250276

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

251277

);

@@ -258,7 +284,7 @@ async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

258284

}

259285

if (!approval?.id) {

260286

throw new Error(

261-

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

287+

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

262288

);

263289

}

264290

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

@@ -387,7 +413,7 @@ describeLive("gateway live trajectory export", () => {

387413

).toBe(true);

388414

const finalText =

389415

typeof exportResponse?.message === "object"

390-

? extractFirstTextBlock(exportResponse.message)

416+

? extractVisibleMessageText(exportResponse.message)

391417

: await waitForTrajectoryExportInstructionText({

392418

events: gatewayEvents,

393419

expectedText: "Trajectory exports can include",