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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

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(sessions): guard append cache after extension seriali...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -60,6 +60,7 @@ function resolveMaxToolResultChars(opts?: { maxToolResultChars?: number }): numb

60606161

type UserAgentMessage = Extract<AgentMessage, { role: "user" }>;

6262

type CompactionAppendValidator = (entryId: string, appendedText: string) => boolean;

63+

type AppendMessageOptions = Parameters<SessionManager["appendMessage"]>[1];

63646465

function isUserAgentMessage(message: AgentMessage): message is UserAgentMessage {

6566

return message.role === "user";

@@ -643,6 +644,7 @@ export function installSessionToolResultGuard(

643644

const allowSyntheticToolResults = opts?.allowSyntheticToolResults ?? true;

644645

const missingToolResultText = opts?.missingToolResultText;

645646

const beforeWrite = opts?.beforeMessageWriteHook;

647+

const toolResultTransformerMayMutate = opts?.transformToolResultForPersistence !== undefined;

646648

const redactionConfig = opts?.redactLoggingConfig;

647649

const maxToolResultChars = resolveMaxToolResultChars(opts);

648650

const transcriptSeqByEntryId: TranscriptSeqByEntryId = new Map();

@@ -653,9 +655,10 @@ export function installSessionToolResultGuard(

653655654656

const appendMessageAndCacheTranscriptSeq = (

655657

message: AgentMessage,

658+

options?: AppendMessageOptions,

656659

): { entryId: string; messageSeq?: number; sessionFile?: string | null } => {

657660

const parentEntryId = sessionManager.getLeafId();

658-

const entryId = originalAppend(message as never);

661+

const entryId = originalAppend(message as never, options);

659662

void opts?.onMessagePersisted?.(message);

660663

const sessionFile = getSessionFile();

661664

if (!sessionFile) {

@@ -686,18 +689,20 @@ export function installSessionToolResultGuard(

686689

* Run the before_message_write hook. Returns the (possibly modified) message,

687690

* or null if the message should be blocked.

688691

*/

689-

const applyBeforeWriteHook = (msg: AgentMessage): AgentMessage | null => {

692+

const applyBeforeWriteHook = (

693+

msg: AgentMessage,

694+

): { message: AgentMessage; changed: boolean } | null => {

690695

if (!beforeWrite) {

691-

return msg;

696+

return { message: msg, changed: false };

692697

}

693698

const result = beforeWrite({ message: msg });

694699

if (result?.block) {

695700

return null;

696701

}

697702

if (result?.message) {

698-

return result.message;

703+

return { message: result.message, changed: true };

699704

}

700-

return msg;

705+

return { message: msg, changed: false };

701706

};

702707703708

const flushPendingToolResults = () => {

@@ -711,16 +716,20 @@ export function installSessionToolResultGuard(

711716

toolName: name,

712717

text: missingToolResultText,

713718

});

714-

const flushed = applyBeforeWriteHook(

715-

persistToolResult(persistMessage(synthetic), {

716-

toolCallId: id,

717-

toolName: name,

718-

isSynthetic: true,

719-

}),

720-

);

719+

const persistedSynthetic = persistMessage(synthetic);

720+

const transformed = persistToolResult(persistedSynthetic, {

721+

toolCallId: id,

722+

toolName: name,

723+

isSynthetic: true,

724+

});

725+

const flushed = applyBeforeWriteHook(transformed);

721726

if (flushed) {

722727

appendMessageAndCacheTranscriptSeq(

723-

capToolResultForPersistence(flushed, maxToolResultChars, redactionConfig),

728+

capToolResultForPersistence(flushed.message, maxToolResultChars, redactionConfig),

729+

{

730+

invalidateSerializedPrefixCache:

731+

persistedSynthetic !== synthetic || toolResultTransformerMayMutate || flushed.changed,

732+

},

724733

);

725734

}

726735

}

@@ -732,7 +741,8 @@ export function installSessionToolResultGuard(

732741

pendingState.clear();

733742

};

734743735-

const guardedAppend = (message: AgentMessage) => {

744+

const guardedAppend = (message: AgentMessage, callerOptions?: AppendMessageOptions) => {

745+

const callerInvalidatesCache = callerOptions?.invalidateSerializedPrefixCache === true;

736746

let nextMessage = message;

737747

const role = (message as { role?: unknown }).role;

738748

if (role === "assistant") {

@@ -758,23 +768,30 @@ export function installSessionToolResultGuard(

758768

const normalizedToolResult = normalizePersistedToolResultName(nextMessage, toolName);

759769

// Apply hard size cap before persistence to prevent oversized tool results

760770

// from consuming the entire context window on subsequent LLM calls.

771+

const persistedToolResult = persistMessage(normalizedToolResult);

761772

const capped = capToolResultForPersistence(

762-

persistMessage(normalizedToolResult),

773+

persistedToolResult,

763774

maxToolResultChars,

764775

redactionConfig,

765776

);

766-

const persisted = applyBeforeWriteHook(

767-

persistToolResult(capped, {

768-

toolCallId: id ?? undefined,

769-

toolName,

770-

isSynthetic: false,

771-

}),

772-

);

777+

const transformed = persistToolResult(capped, {

778+

toolCallId: id ?? undefined,

779+

toolName,

780+

isSynthetic: false,

781+

});

782+

const persisted = applyBeforeWriteHook(transformed);

773783

if (!persisted) {

774784

return undefined;

775785

}

776786

return appendMessageAndCacheTranscriptSeq(

777-

capToolResultForPersistence(persisted, maxToolResultChars, redactionConfig),

787+

capToolResultForPersistence(persisted.message, maxToolResultChars, redactionConfig),

788+

{

789+

invalidateSerializedPrefixCache:

790+

callerInvalidatesCache ||

791+

persistedToolResult !== normalizedToolResult ||

792+

toolResultTransformerMayMutate ||

793+

persisted.changed,

794+

},

778795

).entryId;

779796

}

780797

@@ -818,10 +835,12 @@ export function installSessionToolResultGuard(

818835

flushPendingToolResults();

819836

}

820837821-

const finalMessage = applyBeforeWriteHook(persistMessage(nextMessage));

822-

if (!finalMessage) {

838+

const transformedMessage = persistMessage(nextMessage);

839+

const finalWrite = applyBeforeWriteHook(transformedMessage);

840+

if (!finalWrite) {

823841

return undefined;

824842

}

843+

const finalMessage = finalWrite.message;

825844

const finalRole = (finalMessage as { role?: unknown }).role;

826845

if (

827846

finalRole === "assistant" &&

@@ -845,7 +864,10 @@ export function installSessionToolResultGuard(

845864

entryId: result,

846865

messageSeq,

847866

sessionFile,

848-

} = appendMessageAndCacheTranscriptSeq(finalMessage);

867+

} = appendMessageAndCacheTranscriptSeq(finalMessage, {

868+

invalidateSerializedPrefixCache:

869+

callerInvalidatesCache || transformedMessage !== nextMessage || finalWrite.changed,

870+

});

849871

if (sessionFile) {

850872

emitSessionTranscriptUpdate({

851873

sessionFile,