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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
B
Blog
GbyAI
GbyAI
爱范儿
爱范儿
月光博客
月光博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
腾讯CDC
MyScale Blog
MyScale Blog
V
Visual Studio Blog
The Cloudflare Blog
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
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
refactor: centralize context prompt token resolution · op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -239,66 +239,12 @@ describe("runReplyAgent auto-compaction token update", () => {

239239

return { typing, sessionCtx, resolvedQueue, followupRun };

240240

}

241241242-

it("updates totalTokens from lastCallUsage even without compaction", async () => {

243-

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-usage-last-"));

244-

const storePath = path.join(tmp, "sessions.json");

245-

const sessionKey = "main";

246-

const sessionEntry = {

247-

sessionId: "session",

248-

updatedAt: Date.now(),

249-

totalTokens: 50_000,

250-

};

251-252-

await seedSessionStore({ storePath, sessionKey, entry: sessionEntry });

253-254-

runEmbeddedPiAgentMock.mockResolvedValue({

255-

payloads: [{ text: "ok" }],

256-

meta: {

257-

agentMeta: {

258-

// Tool-use loop: accumulated input is higher than last call's input

259-

usage: { input: 75_000, output: 5_000, total: 80_000 },

260-

lastCallUsage: { input: 55_000, output: 2_000, total: 57_000 },

261-

},

262-

},

263-

});

264-265-

const { typing, sessionCtx, resolvedQueue, followupRun } = createBaseRun({

266-

storePath,

267-

sessionEntry,

268-

});

269-270-

await runReplyAgent({

271-

commandBody: "hello",

272-

followupRun,

273-

queueKey: "main",

274-

resolvedQueue,

275-

shouldSteer: false,

276-

shouldFollowup: false,

277-

isActive: false,

278-

isStreaming: false,

279-

typing,

280-

sessionCtx,

281-

sessionEntry,

282-

sessionStore: { [sessionKey]: sessionEntry },

283-

sessionKey,

284-

storePath,

285-

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

286-

agentCfgContextTokens: 200_000,

287-

resolvedVerboseLevel: "off",

288-

isNewSession: false,

289-

blockStreamingEnabled: false,

290-

resolvedBlockStreamingBreak: "message_end",

291-

shouldInjectGroupIntro: false,

292-

typingMode: "instant",

293-

});

294-295-

const stored = JSON.parse(await fs.readFile(storePath, "utf-8"));

296-

// totalTokens should use lastCallUsage (55k), not accumulated (75k)

297-

expect(stored[sessionKey].totalTokens).toBe(55_000);

298-

});

299-300-

it("reports live diagnostic context from promptTokens, not provider usage totals", async () => {

301-

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-usage-diagnostic-"));

242+

async function runBaseReplyWithAgentMeta(params: {

243+

agentMeta: Record<string, unknown>;

244+

collectDiagnostics?: boolean;

245+

tmpPrefix: string;

246+

}) {

247+

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), params.tmpPrefix));

302248

const storePath = path.join(tmp, "sessions.json");

303249

const sessionKey = "main";

304250

const sessionEntry = {

@@ -312,18 +258,16 @@ describe("runReplyAgent auto-compaction token update", () => {

312258

runEmbeddedPiAgentMock.mockResolvedValue({

313259

payloads: [{ text: "ok" }],

314260

meta: {

315-

agentMeta: {

316-

usage: { input: 75_000, output: 5_000, cacheRead: 25_000, total: 105_000 },

317-

lastCallUsage: { input: 55_000, output: 2_000, cacheRead: 25_000, total: 82_000 },

318-

promptTokens: 44_000,

319-

},

261+

agentMeta: params.agentMeta,

320262

},

321263

});

322264323265

const diagnostics: DiagnosticEventPayload[] = [];

324-

const unsubscribe = onInternalDiagnosticEvent((event) => {

325-

diagnostics.push(event);

326-

});

266+

const unsubscribe = params.collectDiagnostics

267+

? onInternalDiagnosticEvent((event) => {

268+

diagnostics.push(event);

269+

})

270+

: undefined;

327271

const { typing, sessionCtx, resolvedQueue, followupRun } = createBaseRun({

328272

storePath,

329273

sessionEntry,

@@ -355,10 +299,39 @@ describe("runReplyAgent auto-compaction token update", () => {

355299

typingMode: "instant",

356300

});

357301

} finally {

358-

unsubscribe();

302+

unsubscribe?.();

359303

}

360304305+

const stored = JSON.parse(await fs.readFile(storePath, "utf-8"));

361306

const usageEvent = diagnostics.find((event) => event.type === "model.usage");

307+

return { sessionKey, stored, usageEvent };

308+

}

309+310+

it("updates totalTokens from lastCallUsage even without compaction", async () => {

311+

const { sessionKey, stored } = await runBaseReplyWithAgentMeta({

312+

tmpPrefix: "openclaw-usage-last-",

313+

agentMeta: {

314+

// Tool-use loop: accumulated input is higher than last call's input

315+

usage: { input: 75_000, output: 5_000, total: 80_000 },

316+

lastCallUsage: { input: 55_000, output: 2_000, total: 57_000 },

317+

},

318+

});

319+320+

// totalTokens should use lastCallUsage (55k), not accumulated (75k)

321+

expect(stored[sessionKey].totalTokens).toBe(55_000);

322+

});

323+324+

it("reports live diagnostic context from promptTokens, not provider usage totals", async () => {

325+

const { usageEvent } = await runBaseReplyWithAgentMeta({

326+

tmpPrefix: "openclaw-usage-diagnostic-",

327+

collectDiagnostics: true,

328+

agentMeta: {

329+

usage: { input: 75_000, output: 5_000, cacheRead: 25_000, total: 105_000 },

330+

lastCallUsage: { input: 55_000, output: 2_000, cacheRead: 25_000, total: 82_000 },

331+

promptTokens: 44_000,

332+

},

333+

});

334+362335

expect(usageEvent).toMatchObject({

363336

type: "model.usage",

364337

usage: {

@@ -376,72 +349,21 @@ describe("runReplyAgent auto-compaction token update", () => {

376349

});

377350378351

it("falls back to last-call prompt usage for live diagnostic context", async () => {

379-

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-usage-diagnostic-last-"));

380-

const storePath = path.join(tmp, "sessions.json");

381-

const sessionKey = "main";

382-

const sessionEntry = {

383-

sessionId: "session",

384-

updatedAt: Date.now(),

385-

totalTokens: 50_000,

386-

};

387-388-

await seedSessionStore({ storePath, sessionKey, entry: sessionEntry });

389-390-

runEmbeddedPiAgentMock.mockResolvedValue({

391-

payloads: [{ text: "ok" }],

392-

meta: {

393-

agentMeta: {

394-

usage: { input: 75_000, output: 5_000, cacheRead: 25_000, total: 105_000 },

395-

lastCallUsage: {

396-

input: 55_000,

397-

output: 2_000,

398-

cacheRead: 25_000,

399-

cacheWrite: 1_000,

400-

total: 83_000,

401-

},

352+

const { usageEvent } = await runBaseReplyWithAgentMeta({

353+

tmpPrefix: "openclaw-usage-diagnostic-last-",

354+

collectDiagnostics: true,

355+

agentMeta: {

356+

usage: { input: 75_000, output: 5_000, cacheRead: 25_000, total: 105_000 },

357+

lastCallUsage: {

358+

input: 55_000,

359+

output: 2_000,

360+

cacheRead: 25_000,

361+

cacheWrite: 1_000,

362+

total: 83_000,

402363

},

403364

},

404365

});

405366406-

const diagnostics: DiagnosticEventPayload[] = [];

407-

const unsubscribe = onInternalDiagnosticEvent((event) => {

408-

diagnostics.push(event);

409-

});

410-

const { typing, sessionCtx, resolvedQueue, followupRun } = createBaseRun({

411-

storePath,

412-

sessionEntry,

413-

});

414-415-

try {

416-

await runReplyAgent({

417-

commandBody: "hello",

418-

followupRun,

419-

queueKey: "main",

420-

resolvedQueue,

421-

shouldSteer: false,

422-

shouldFollowup: false,

423-

isActive: false,

424-

isStreaming: false,

425-

typing,

426-

sessionCtx,

427-

sessionEntry,

428-

sessionStore: { [sessionKey]: sessionEntry },

429-

sessionKey,

430-

storePath,

431-

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

432-

agentCfgContextTokens: 200_000,

433-

resolvedVerboseLevel: "off",

434-

isNewSession: false,

435-

blockStreamingEnabled: false,

436-

resolvedBlockStreamingBreak: "message_end",

437-

shouldInjectGroupIntro: false,

438-

typingMode: "instant",

439-

});

440-

} finally {

441-

unsubscribe();

442-

}

443-444-

const usageEvent = diagnostics.find((event) => event.type === "model.usage");

445367

expect(usageEvent).toMatchObject({

446368

type: "model.usage",

447369

usage: {