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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

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(status): avoid cumulative usage for context percent (...
ashishpatel2 · 2026-06-14 · via Recent Commits to openclaw:main

@@ -109,6 +109,7 @@ describe("buildStatusMessage", () => {

109109

inputTokens: 1200,

110110

outputTokens: 800,

111111

totalTokens: 16_000,

112+

totalTokensFresh: true,

112113

contextTokens: 32_000,

113114

thinkingLevel: "low",

114115

verboseLevel: "on",

@@ -221,6 +222,30 @@ describe("buildStatusMessage", () => {

221222

expect(normalized).not.toContain("Context: 3.8m/1.0m");

222223

});

223224225+

it("preserves legacy unknown-freshness totalTokens as context usage", () => {

226+

const text = buildStatusMessage({

227+

agent: {

228+

model: "anthropic/test:opus",

229+

contextTokens: 1_000_000,

230+

},

231+

sessionEntry: {

232+

sessionId: "abc",

233+

updatedAt: 0,

234+

totalTokens: 25_000,

235+

contextTokens: 1_000_000,

236+

},

237+

sessionKey: "agent:main:main",

238+

sessionScope: "per-sender",

239+

queue: { mode: "collect", depth: 0 },

240+

modelAuth: "api-key",

241+

now: 10 * 60_000,

242+

});

243+

const normalized = normalizeTestText(text);

244+245+

expect(normalized).toContain("Context: 25k/1.0m");

246+

expect(normalized).not.toContain("Context: ?/1.0m");

247+

});

248+224249

it("uses estimated context budget status when fresh totalTokens are unavailable", () => {

225250

const text = buildStatusMessage({

226251

agent: {

@@ -856,6 +881,7 @@ describe("buildStatusMessage", () => {

856881

channel: "discord",

857882

groupId: "123",

858883

totalTokens: 49_000,

884+

totalTokensFresh: true,

859885

contextTokens: 1_048_576,

860886

},

861887

sessionKey: "agent:main:main",

@@ -891,6 +917,7 @@ describe("buildStatusMessage", () => {

891917

sessionId: "ctx1m",

892918

updatedAt: 0,

893919

totalTokens: 200_000,

920+

totalTokensFresh: true,

894921

},

895922

sessionKey: "agent:main:main",

896923

sessionScope: "per-sender",

@@ -909,6 +936,7 @@ describe("buildStatusMessage", () => {

909936

sessionId: "opus47",

910937

updatedAt: 0,

911938

totalTokens: 200_000,

939+

totalTokensFresh: true,

912940

},

913941

sessionKey: "agent:main:main",

914942

sessionScope: "per-sender",

@@ -928,6 +956,7 @@ describe("buildStatusMessage", () => {

928956

modelOverride: "small-model",

929957

contextTokens: 4_096,

930958

totalTokens: 1_024,

959+

totalTokensFresh: true,

931960

};

932961933962

applyModelOverrideToSessionEntry({

@@ -981,6 +1010,7 @@ describe("buildStatusMessage", () => {

9811010

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

9821011

fallbackNoticeReason: "model not allowed",

9831012

totalTokens: 49_000,

1013+

totalTokensFresh: true,

9841014

contextTokens: 1_048_576,

9851015

},

9861016

sessionKey: "agent:main:main",

@@ -1113,6 +1143,7 @@ describe("buildStatusMessage", () => {

11131143

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

11141144

fallbackNoticeReason: "model not allowed",

11151145

totalTokens: 49_000,

1146+

totalTokensFresh: true,

11161147

contextTokens: 1_048_576,

11171148

},

11181149

sessionKey: "agent:main:main",

@@ -1157,6 +1188,7 @@ describe("buildStatusMessage", () => {

11571188

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

11581189

fallbackNoticeReason: "model not allowed",

11591190

totalTokens: 49_000,

1191+

totalTokensFresh: true,

11601192

contextTokens: 123_456,

11611193

},

11621194

sessionKey: "agent:main:main",

@@ -1203,6 +1235,7 @@ describe("buildStatusMessage", () => {

12031235

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

12041236

fallbackNoticeReason: "model not allowed",

12051237

totalTokens: 49_000,

1238+

totalTokensFresh: true,

12061239

},

12071240

sessionKey: "agent:main:main",

12081241

sessionScope: "per-sender",

@@ -1248,6 +1281,7 @@ describe("buildStatusMessage", () => {

12481281

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

12491282

fallbackNoticeReason: "model not allowed",

12501283

totalTokens: 49_000,

1284+

totalTokensFresh: true,

12511285

},

12521286

sessionKey: "agent:main:main",

12531287

sessionScope: "per-sender",

@@ -1292,6 +1326,7 @@ describe("buildStatusMessage", () => {

12921326

fallbackNoticeActiveModel: "minimax-portal/MiniMax-M2.7",

12931327

fallbackNoticeReason: "model not allowed",

12941328

totalTokens: 49_000,

1329+

totalTokensFresh: true,

12951330

},

12961331

sessionKey: "agent:main:main",

12971332

sessionScope: "per-sender",

@@ -1333,6 +1368,7 @@ describe("buildStatusMessage", () => {

13331368

fallbackNoticeActiveModel: "custom-runtime/unknown-fallback-model",

13341369

fallbackNoticeReason: "model not allowed",

13351370

totalTokens: 49_000,

1371+

totalTokensFresh: true,

13361372

contextTokens: 128_000,

13371373

},

13381374

sessionKey: "agent:main:main",

@@ -1981,6 +2017,54 @@ describe("buildStatusMessage", () => {

19812017

);

19822018

});

198320192020+

it("does not let legacy cumulative session totals override fresh transcript context usage", async () => {

2021+

await withTempHome(

2022+

async (dir) => {

2023+

const sessionId = "sess-legacy-cumulative-context";

2024+

writeTranscriptUsageLog({

2025+

dir,

2026+

agentId: "main",

2027+

sessionId,

2028+

usage: {

2029+

input: 10_000,

2030+

output: 1_000,

2031+

cacheRead: 26_000,

2032+

cacheWrite: 0,

2033+

totalTokens: 36_000,

2034+

},

2035+

});

2036+2037+

const text = buildStatusMessage({

2038+

agent: {

2039+

model: "anthropic/claude-opus-4-6",

2040+

contextTokens: 1_000_000,

2041+

},

2042+

sessionEntry: {

2043+

sessionId,

2044+

updatedAt: 0,

2045+

inputTokens: 16,

2046+

outputTokens: 5_100,

2047+

cacheRead: 2_300_000,

2048+

cacheWrite: 11_000,

2049+

totalTokens: 2_300_000,

2050+

contextTokens: 1_000_000,

2051+

},

2052+

sessionKey: "agent:main:main",

2053+

sessionScope: "per-sender",

2054+

queue: { mode: "collect", depth: 0 },

2055+

includeTranscriptUsage: true,

2056+

modelAuth: "api-key",

2057+

});

2058+

const normalized = normalizeTestText(text);

2059+2060+

expect(normalized).toContain("Cache: 100% hit · 2.3m cached, 11k new");

2061+

expect(normalized).toContain("Context: 36k/1.0m (4%)");

2062+

expect(normalized).not.toContain("Context: 2.3m/1.0m");

2063+

},

2064+

{ prefix: "openclaw-status-" },

2065+

);

2066+

});

2067+19842068

it("reads transcript usage for non-default agents", async () => {

19852069

await withTempHome(

19862070

async (dir) => {

@@ -2237,6 +2321,7 @@ describe("buildStatusMessage", () => {

22372321

sessionId: "sess-runtime-slash-id",

22382322

updatedAt: 0,

22392323

totalTokens: 1205,

2324+

totalTokensFresh: true,

22402325

model: "google/gemini-2.5-pro",

22412326

},

22422327

sessionKey: "agent:main:main",

@@ -2279,6 +2364,7 @@ describe("buildStatusMessage", () => {

22792364

fallbackNoticeActiveModel: "fake-minimax/FakeMiniMax-M2.5",

22802365

fallbackNoticeReason: "model not allowed",

22812366

totalTokens: 49_000,

2367+

totalTokensFresh: true,

22822368

},

22832369

sessionKey: "agent:main:main",

22842370

sessionScope: "per-sender",

@@ -2314,6 +2400,7 @@ describe("buildStatusMessage", () => {

23142400

updatedAt: 0,

23152401

model: "openai/gpt-4o",

23162402

totalTokens: 49_000,

2403+

totalTokensFresh: true,

23172404

},

23182405

sessionKey: "agent:main:main",

23192406

sessionScope: "per-sender",

@@ -2384,6 +2471,7 @@ describe("buildStatusMessage", () => {

23842471

sessionId: "sess-anthropic-qualified-context",

23852472

updatedAt: 0,

23862473

totalTokens: 25_000,

2474+

totalTokensFresh: true,

23872475

},

23882476

sessionKey: "agent:main:main",

23892477

sessionScope: "per-sender",

@@ -2408,6 +2496,7 @@ describe("buildStatusMessage", () => {

24082496

sessionId: "sess-openai-chatgpt-cap-context",

24092497

updatedAt: 0,

24102498

totalTokens: 25_000,

2499+

totalTokensFresh: true,

24112500

},

24122501

sessionKey: "agent:main:main",

24132502

sessionScope: "per-sender",

@@ -2432,6 +2521,7 @@ describe("buildStatusMessage", () => {

24322521

sessionId: "sess-openai-chatgpt-runtime-cap-context",

24332522

updatedAt: 0,

24342523

totalTokens: 25_000,

2524+

totalTokensFresh: true,

24352525

},

24362526

sessionKey: "agent:main:main",

24372527

sessionScope: "per-sender",

@@ -2469,6 +2559,7 @@ describe("buildStatusMessage", () => {

24692559

fallbackNoticeActiveModel: "custom-runtime/unknown-fallback-model",

24702560

fallbackNoticeReason: "model not allowed",

24712561

totalTokens: 49_000,

2562+

totalTokensFresh: true,

24722563

contextTokens: 128_000,

24732564

},

24742565

sessionKey: "agent:main:main",