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

推荐订阅源

Y
Y Combinator Blog
有赞技术团队
有赞技术团队
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
MyScale Blog
MyScale Blog
博客园_首页
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
罗磊的独立博客

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(webchat): fetch full sidebar content for truncated hi...
NianJiuZst · 2026-05-31 · via Recent Commits to openclaw:main

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

2222

validateChatAbortParams,

2323

validateChatHistoryParams,

2424

validateChatInjectParams,

25+

validateChatMessageGetParams,

2526

validateChatSendParams,

2627

} from "../../../packages/gateway-protocol/src/index.js";

2728

import { CHAT_SEND_SESSION_KEY_MAX_LENGTH } from "../../../packages/gateway-protocol/src/schema.js";

@@ -127,11 +128,13 @@ import {

127128

createManagedOutgoingImageBlocks,

128129

} from "../managed-image-attachments.js";

129130

import { ADMIN_SCOPE } from "../method-scopes.js";

130-

import { getMaxChatHistoryMessagesBytes } from "../server-constants.js";

131+

import { getMaxChatHistoryMessagesBytes, MAX_PAYLOAD_BYTES } from "../server-constants.js";

131132

import { readSessionTranscriptIndex } from "../session-transcript-index.fs.js";

132133

import {

133134

capArrayByJsonBytes,

134135

loadSessionEntry,

136+

readSessionMessageByIdAsync,

137+

readSessionMessagesAsync,

135138

resolveGatewayModelSupportsImages,

136139

resolveGatewaySessionThinkingDefault,

137140

resolveDeletedAgentIdFromSessionKey,

@@ -1387,11 +1390,26 @@ export function buildOversizedHistoryPlaceholder(message?: unknown): Record<stri

13871390

typeof (message as { timestamp?: unknown }).timestamp === "number"

13881391

? (message as { timestamp: number }).timestamp

13891392

: Date.now();

1393+

const rawMetadata =

1394+

message && typeof message === "object"

1395+

? (message as Record<string, unknown>)["__openclaw"]

1396+

: undefined;

1397+

const metadata =

1398+

rawMetadata && typeof rawMetadata === "object" && !Array.isArray(rawMetadata)

1399+

? (rawMetadata as Record<string, unknown>)

1400+

: {};

1401+

const metadataId = typeof metadata.id === "string" ? metadata.id : undefined;

1402+

const metadataSeq = typeof metadata.seq === "number" ? metadata.seq : undefined;

13901403

return {

13911404

role,

13921405

timestamp,

13931406

content: [{ type: "text", text: CHAT_HISTORY_OVERSIZED_PLACEHOLDER }],

1394-

__openclaw: { truncated: true, reason: "oversized" },

1407+

__openclaw: {

1408+

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

1409+

...(metadataSeq !== undefined ? { seq: metadataSeq } : {}),

1410+

truncated: true,

1411+

reason: "oversized",

1412+

},

13951413

};

13961414

}

13971415

@@ -2330,6 +2348,35 @@ export function dropPreSessionStartAnnouncePairs(

23302348

return changed ? kept : messages;

23312349

}

233223502351+

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

2352+

const metadata = asOptionalRecord(asOptionalRecord(message)?.["__openclaw"]);

2353+

return typeof metadata?.id === "string" ? metadata.id : undefined;

2354+

}

2355+2356+

async function isChatMessageIdVisibleAfterHistoryFilters(params: {

2357+

sessionId: string;

2358+

storePath: string | undefined;

2359+

sessionFile: string | undefined;

2360+

messageId: string;

2361+

sessionStartedAt?: number;

2362+

}): Promise<boolean> {

2363+

if (params.sessionStartedAt === undefined) {

2364+

return true;

2365+

}

2366+

const messages = await readSessionMessagesAsync(

2367+

params.sessionId,

2368+

params.storePath,

2369+

params.sessionFile,

2370+

{

2371+

mode: "full",

2372+

reason: "chat.message.get visibility",

2373+

},

2374+

);

2375+

return dropPreSessionStartAnnouncePairs(messages, params.sessionStartedAt).some(

2376+

(message) => readChatHistoryMessageId(message) === params.messageId,

2377+

);

2378+

}

2379+23332380

function dropLocalHistoryOverreadContextMessage(

23342381

messages: unknown[],

23352382

contextMessage: unknown,

@@ -2474,6 +2521,94 @@ export const chatHandlers: GatewayRequestHandlers = {

24742521

verboseLevel,

24752522

});

24762523

},

2524+

"chat.message.get": async ({ params, respond, context }) => {

2525+

if (!validateChatMessageGetParams(params)) {

2526+

respond(

2527+

false,

2528+

undefined,

2529+

errorShape(

2530+

ErrorCodes.INVALID_REQUEST,

2531+

`invalid chat.message.get params: ${formatValidationErrors(validateChatMessageGetParams.errors)}`,

2532+

),

2533+

);

2534+

return;

2535+

}

2536+

const { sessionKey, messageId, maxChars } = params as {

2537+

sessionKey: string;

2538+

agentId?: string;

2539+

messageId: string;

2540+

maxChars?: number;

2541+

};

2542+

const agentIdOverride = normalizeOptionalText((params as { agentId?: string }).agentId);

2543+

const requestedAgentId = resolveRequestedChatAgentId({

2544+

cfg: (context as { getRuntimeConfig?: () => OpenClawConfig }).getRuntimeConfig?.(),

2545+

requestedSessionKey: sessionKey,

2546+

agentId: agentIdOverride,

2547+

});

2548+

const sessionLoadOptions = requestedAgentId ? { agentId: requestedAgentId } : undefined;

2549+

const { cfg, storePath, entry } = loadSessionEntry(sessionKey, sessionLoadOptions);

2550+

const selectedAgent = validateChatSelectedAgent({

2551+

cfg,

2552+

requestedSessionKey: sessionKey,

2553+

agentId: requestedAgentId,

2554+

});

2555+

if (!selectedAgent.ok) {

2556+

respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, selectedAgent.error));

2557+

return;

2558+

}

2559+

const sessionId = entry?.sessionId;

2560+

if (!sessionId) {

2561+

respond(true, { ok: false, unavailableReason: "not_found" });

2562+

return;

2563+

}

2564+2565+

const resolved = await readSessionMessageByIdAsync(

2566+

sessionId,

2567+

storePath,

2568+

entry?.sessionFile,

2569+

messageId,

2570+

);

2571+

if (!resolved.found) {

2572+

respond(true, { ok: false, unavailableReason: "not_found" });

2573+

return;

2574+

}

2575+

const visible = await isChatMessageIdVisibleAfterHistoryFilters({

2576+

sessionId,

2577+

storePath,

2578+

sessionFile: entry?.sessionFile,

2579+

messageId,

2580+

sessionStartedAt:

2581+

typeof entry?.sessionStartedAt === "number" ? entry.sessionStartedAt : undefined,

2582+

});

2583+

if (!visible) {

2584+

respond(true, { ok: false, unavailableReason: "not_found" });

2585+

return;

2586+

}

2587+

if (resolved.oversized) {

2588+

respond(true, { ok: false, unavailableReason: "oversized" });

2589+

return;

2590+

}

2591+2592+

const effectiveMaxChars =

2593+

typeof maxChars === "number" ? maxChars : Math.min(MAX_PAYLOAD_BYTES, 1_000_000);

2594+

const projectedMessage = resolved.message

2595+

? projectChatDisplayMessage(resolved.message, {

2596+

maxChars: effectiveMaxChars,

2597+

})

2598+

: undefined;

2599+

const projected = projectedMessage

2600+

? augmentChatHistoryWithCanvasBlocks([projectedMessage])[0]

2601+

: undefined;

2602+

if (!projected) {

2603+

respond(true, { ok: false, unavailableReason: "not_visible" });

2604+

return;

2605+

}

2606+2607+

respond(true, {

2608+

ok: true,

2609+

message: projected,

2610+

});

2611+

},

24772612

"chat.abort": async ({ params, respond, context, client }) => {

24782613

if (!validateChatAbortParams(params)) {

24792614

respond(