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

推荐订阅源

Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
V
V2EX
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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): drop stale subagent announce history · open...
openperf · 2026-05-27 · via Recent Commits to openclaw:main

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

1313

buildSystemRunApprovalEnvBinding,

1414

} from "../../infra/system-run-approval-binding.js";

1515

import { resetLogger, setLoggerOverride } from "../../logging.js";

16+

import { asOptionalRecord } from "../../shared/record-coerce.js";

1617

import { projectRecentChatDisplayMessages } from "../chat-display-projection.js";

1718

import { ExecApprovalManager } from "../exec-approval-manager.js";

1819

import { validateExecApprovalRequestParams } from "../protocol/index.js";

@@ -22,6 +23,7 @@ import { normalizeRpcAttachmentsToChatAttachments } from "./attachment-normalize

2223

import {

2324

DEFAULT_CHAT_HISTORY_TEXT_MAX_CHARS,

2425

augmentChatHistoryWithCanvasBlocks,

26+

dropPreSessionStartAnnouncePairs,

2527

resolveEffectiveChatHistoryMaxChars,

2628

sanitizeChatHistoryMessages,

2729

sanitizeChatSendMessageInput,

@@ -1069,6 +1071,203 @@ describe("projectRecentChatDisplayMessages", () => {

10691071

});

10701072

});

107110731074+

describe("dropPreSessionStartAnnouncePairs (#85648)", () => {

1075+

const announceProvenance = {

1076+

kind: "inter_session",

1077+

sourceSessionKey: "agent:main:subagent:child",

1078+

sourceChannel: "internal",

1079+

sourceTool: "subagent_announce",

1080+

};

1081+

const cutoff = 1_700_000_000_000;

1082+1083+

it("drops a pre-cutoff announce user message together with its adjacent assistant reply", () => {

1084+

const messages = [

1085+

{

1086+

role: "user",

1087+

content: [{ type: "text", text: "real prior" }],

1088+

__openclaw: { seq: 1, recordTimestampMs: cutoff - 86_400_000 },

1089+

},

1090+

{

1091+

role: "assistant",

1092+

content: [{ type: "text", text: "real reply" }],

1093+

__openclaw: { seq: 2, recordTimestampMs: cutoff - 86_400_000 },

1094+

},

1095+

{

1096+

role: "user",

1097+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1098+

provenance: announceProvenance,

1099+

__openclaw: { seq: 3, recordTimestampMs: cutoff - 1_000 },

1100+

},

1101+

{

1102+

role: "assistant",

1103+

content: [{ type: "text", text: "fanfic lore-bible summary" }],

1104+

__openclaw: { seq: 4, recordTimestampMs: cutoff - 1_000 },

1105+

},

1106+

{

1107+

role: "user",

1108+

content: [{ type: "text", text: "fresh user turn" }],

1109+

__openclaw: { seq: 5, recordTimestampMs: cutoff + 5_000 },

1110+

},

1111+

];

1112+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1113+

expect(out.map((m) => asOptionalRecord(asOptionalRecord(m)?.["__openclaw"])?.["seq"])).toEqual([

1114+

1, 2, 5,

1115+

]);

1116+

});

1117+1118+

it("drops imported CLI-shaped announce pairs using timestamp and text fallback", () => {

1119+

const messages = [

1120+

{

1121+

role: "user",

1122+

content: [

1123+

"[Inter-session message] sourceSession=agent:main:subagent:child sourceChannel=internal sourceTool=subagent_announce",

1124+

"This content was routed by OpenClaw from another session or internal tool.",

1125+

].join("\n"),

1126+

timestamp: cutoff - 1_000,

1127+

},

1128+

{

1129+

role: "assistant",

1130+

content: [{ type: "text", text: "stale imported assistant reply" }],

1131+

timestamp: cutoff - 500,

1132+

},

1133+

{

1134+

role: "user",

1135+

content: "fresh imported turn",

1136+

timestamp: cutoff + 1_000,

1137+

},

1138+

];

1139+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1140+

expect(out).toEqual([messages[2]]);

1141+

});

1142+1143+

it("keeps a mid-session announce pair whose timestamp is at or after the cutoff", () => {

1144+

const messages = [

1145+

{

1146+

role: "user",

1147+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1148+

provenance: announceProvenance,

1149+

__openclaw: { seq: 1, recordTimestampMs: cutoff + 1_000 },

1150+

},

1151+

{

1152+

role: "assistant",

1153+

content: [{ type: "text", text: "current-session reply" }],

1154+

__openclaw: { seq: 2, recordTimestampMs: cutoff + 2_000 },

1155+

},

1156+

];

1157+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1158+

expect(out).toEqual(messages);

1159+

});

1160+1161+

it("keeps an adjacent assistant reply when only the announce user predates the cutoff", () => {

1162+

const messages = [

1163+

{

1164+

role: "user",

1165+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1166+

provenance: announceProvenance,

1167+

__openclaw: { seq: 1, recordTimestampMs: cutoff - 1_000 },

1168+

},

1169+

{

1170+

role: "assistant",

1171+

content: [{ type: "text", text: "fresh-session reply" }],

1172+

__openclaw: { seq: 2, recordTimestampMs: cutoff + 1_000 },

1173+

},

1174+

];

1175+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1176+

expect(out).toEqual([messages[1]]);

1177+

});

1178+1179+

it("keeps an adjacent assistant reply when its record timestamp is missing", () => {

1180+

const messages = [

1181+

{

1182+

role: "user",

1183+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1184+

provenance: announceProvenance,

1185+

__openclaw: { seq: 1, recordTimestampMs: cutoff - 1_000 },

1186+

},

1187+

{

1188+

role: "assistant",

1189+

content: [{ type: "text", text: "timestampless reply" }],

1190+

__openclaw: { seq: 2 },

1191+

},

1192+

];

1193+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1194+

expect(out).toEqual([messages[1]]);

1195+

});

1196+1197+

it("returns the input unchanged when sessionStartedAt is undefined", () => {

1198+

const messages = [

1199+

{

1200+

role: "user",

1201+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1202+

provenance: announceProvenance,

1203+

__openclaw: { seq: 1, recordTimestampMs: cutoff - 1_000 },

1204+

},

1205+

{

1206+

role: "assistant",

1207+

content: [{ type: "text", text: "would-be-stripped reply" }],

1208+

__openclaw: { seq: 2, recordTimestampMs: cutoff - 1_000 },

1209+

},

1210+

];

1211+

const out = dropPreSessionStartAnnouncePairs(messages, undefined);

1212+

expect(out).toBe(messages);

1213+

});

1214+1215+

it("drops a trailing pre-cutoff announce user message even with no assistant reply", () => {

1216+

const messages = [

1217+

{

1218+

role: "user",

1219+

content: [{ type: "text", text: "real prior" }],

1220+

__openclaw: { seq: 1, recordTimestampMs: cutoff + 1_000 },

1221+

},

1222+

{

1223+

role: "user",

1224+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1225+

provenance: announceProvenance,

1226+

__openclaw: { seq: 2, recordTimestampMs: cutoff - 1_000 },

1227+

},

1228+

];

1229+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1230+

expect(out.map((m) => asOptionalRecord(asOptionalRecord(m)?.["__openclaw"])?.["seq"])).toEqual([

1231+

1,

1232+

]);

1233+

});

1234+1235+

it("does not drop a normal pre-cutoff user message that is not a subagent_announce", () => {

1236+

const messages = [

1237+

{

1238+

role: "user",

1239+

content: [{ type: "text", text: "older user turn" }],

1240+

__openclaw: { seq: 1, recordTimestampMs: cutoff - 1_000 },

1241+

},

1242+

{

1243+

role: "assistant",

1244+

content: [{ type: "text", text: "older reply" }],

1245+

__openclaw: { seq: 2, recordTimestampMs: cutoff - 1_000 },

1246+

},

1247+

];

1248+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1249+

expect(out).toEqual(messages);

1250+

});

1251+1252+

it("does not drop a pre-cutoff announce when its record timestamp is missing", () => {

1253+

const messages = [

1254+

{

1255+

role: "user",

1256+

content: [{ type: "text", text: "[Inter-session message] sourceTool=subagent_announce" }],

1257+

provenance: announceProvenance,

1258+

__openclaw: { seq: 1 },

1259+

},

1260+

{

1261+

role: "assistant",

1262+

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

1263+

__openclaw: { seq: 2 },

1264+

},

1265+

];

1266+

const out = dropPreSessionStartAnnouncePairs(messages, cutoff);

1267+

expect(out).toEqual(messages);

1268+

});

1269+

});

1270+10721271

describe("resolveEffectiveChatHistoryMaxChars", () => {

10731272

it("uses gateway.webchat.chatHistoryMaxChars when RPC maxChars is absent", () => {

10741273

expect(