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

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(agents): clear stale compaction bindings · openclaw/o...
frankekn · 2026-05-31 · via Recent Commits to openclaw:main

@@ -1003,6 +1003,100 @@ describe("runCliTurnCompactionLifecycle", () => {

10031003

expect(updatedEntry?.compactionCount).toBe(1);

10041004

});

100510051006+

it("clears stale Codex native binding when context-engine fallback is below target", async () => {

1007+

const sessionKey = "agent:main:codex-stale-binding-under-target";

1008+

const sessionId = "session-codex-stale-binding-under-target";

1009+

const sessionFile = path.join(tmpDir, "session-codex-stale-binding-under-target.jsonl");

1010+

const storePath = path.join(tmpDir, "sessions-codex-stale-binding-under-target.json");

1011+

await writeSessionFile({ sessionFile, sessionId });

1012+1013+

const sessionEntry: SessionEntry = {

1014+

sessionId,

1015+

updatedAt: Date.now(),

1016+

sessionFile,

1017+

contextTokens: 1_000,

1018+

totalTokens: 950,

1019+

totalTokensFresh: true,

1020+

agentHarnessId: "codex",

1021+

cliSessionBindings: {

1022+

codex: { sessionId: "thread-1" },

1023+

},

1024+

cliSessionIds: {

1025+

codex: "thread-1",

1026+

},

1027+

};

1028+

const sessionStore: Record<string, SessionEntry> = { [sessionKey]: sessionEntry };

1029+

await fs.writeFile(storePath, JSON.stringify(sessionStore, null, 2), "utf-8");

1030+1031+

const compactCalls: Array<Parameters<ContextEngine["compact"]>[0]> = [];

1032+

const compactAgentHarnessSession = vi.fn(async () => ({

1033+

ok: false,

1034+

compacted: false,

1035+

reason: "thread not found: thread-1",

1036+

failure: {

1037+

reason: "stale_thread_binding",

1038+

},

1039+

}));

1040+

const maintenance = vi.fn(async () => ({ changed: false, bytesFreed: 0, rewrittenEntries: 0 }));

1041+

const recordCliCompactionInStore = vi.fn();

1042+

setCliCompactionTestDeps({

1043+

resolveContextEngine: async () => ({

1044+

...buildContextEngine({ compactCalls }),

1045+

async compact(compactParams) {

1046+

compactCalls.push(compactParams);

1047+

return {

1048+

ok: true,

1049+

compacted: false,

1050+

reason: "already under target",

1051+

};

1052+

},

1053+

}),

1054+

ensureSelectedAgentHarnessPlugin: vi.fn(async () => undefined),

1055+

maybeCompactAgentHarnessSession: compactAgentHarnessSession as never,

1056+

createPreparedEmbeddedAgentSettingsManager: async () => ({

1057+

getCompactionReserveTokens: () => 200,

1058+

getCompactionKeepRecentTokens: () => 0,

1059+

applyOverrides: () => {},

1060+

}),

1061+

shouldPreemptivelyCompactBeforePrompt: () => ({

1062+

route: "fits",

1063+

shouldCompact: false,

1064+

estimatedPromptTokens: 600,

1065+

promptBudgetBeforeReserve: 800,

1066+

overflowTokens: 0,

1067+

toolResultReducibleChars: 0,

1068+

effectiveReserveTokens: 200,

1069+

}),

1070+

resolveLiveToolResultMaxChars: () => 20_000,

1071+

runContextEngineMaintenance: maintenance,

1072+

recordCliCompactionInStore,

1073+

});

1074+1075+

const updatedEntry = await runCliTurnCompactionLifecycle({

1076+

cfg: {} as OpenClawConfig,

1077+

sessionId,

1078+

sessionKey,

1079+

sessionEntry,

1080+

sessionStore,

1081+

storePath,

1082+

sessionAgentId: "main",

1083+

workspaceDir: tmpDir,

1084+

agentDir: tmpDir,

1085+

provider: "codex",

1086+

model: "gpt-5.5",

1087+

});

1088+1089+

expect(compactAgentHarnessSession).toHaveBeenCalledTimes(1);

1090+

expect(compactCalls).toHaveLength(1);

1091+

expect(maintenance).not.toHaveBeenCalled();

1092+

expect(recordCliCompactionInStore).not.toHaveBeenCalled();

1093+

expect(updatedEntry?.compactionCount).toBeUndefined();

1094+

expect(updatedEntry?.cliSessionBindings?.codex).toBeUndefined();

1095+

expect(updatedEntry?.cliSessionIds?.codex).toBeUndefined();

1096+

expect(sessionStore[sessionKey]?.cliSessionBindings?.codex).toBeUndefined();

1097+

expect(sessionStore[sessionKey]?.cliSessionIds?.codex).toBeUndefined();

1098+

});

1099+10061100

it("falls back to context-engine compaction when Codex native compaction returns a raw missing thread reason", async () => {

10071101

const sessionKey = "agent:main:codex-raw-stale-binding";

10081102

const sessionId = "session-codex-raw-stale-binding";