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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
Surface Codex usage-limit reset details in chat replies (...
pashpashpash · 2026-05-05 · via Recent Commits to openclaw:main

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

1414

CodexAppServerEventProjector,

1515

type CodexAppServerToolTelemetry,

1616

} from "./event-projector.js";

17+

import { rememberCodexRateLimits, resetCodexRateLimitCacheForTests } from "./rate-limit-cache.js";

1718

import { createCodexTestModel } from "./test-support.js";

18191920

const THREAD_ID = "thread-1";

@@ -86,6 +87,7 @@ beforeEach(() => {

8687

afterEach(async () => {

8788

resetAgentEventsForTest();

8889

resetGlobalHookRunner();

90+

resetCodexRateLimitCacheForTests();

8991

vi.restoreAllMocks();

9092

for (const tempDir of tempDirs) {

9193

await fs.rm(tempDir, { recursive: true, force: true });

@@ -140,6 +142,23 @@ function appServerError(params: { message: string; willRetry: boolean }): Projec

140142

});

141143

}

142144145+

function rateLimitsUpdated(resetsAt: number): ProjectorNotification {

146+

return {

147+

method: "account/rateLimits/updated",

148+

params: {

149+

rateLimits: {

150+

limitId: "codex",

151+

limitName: "Codex",

152+

primary: { usedPercent: 100, windowDurationMins: 300, resetsAt },

153+

secondary: null,

154+

credits: null,

155+

planType: "plus",

156+

rateLimitReachedType: "rate_limit_reached",

157+

},

158+

},

159+

} as ProjectorNotification;

160+

}

161+143162

function turnCompleted(items: unknown[] = []): ProjectorNotification {

144163

return {

145164

method: "turn/completed",

@@ -280,6 +299,95 @@ describe("CodexAppServerEventProjector", () => {

280299

expect(result.lastAssistant).toBeUndefined();

281300

});

282301302+

it("uses Codex rate-limit resets for usage-limit app-server errors", async () => {

303+

const projector = await createProjector();

304+

const resetsAt = Math.ceil(Date.now() / 1000) + 120;

305+306+

await projector.handleNotification(rateLimitsUpdated(resetsAt));

307+

await projector.handleNotification(

308+

forCurrentTurn("error", {

309+

error: {

310+

message: "You've reached your usage limit.",

311+

codexErrorInfo: "usageLimitExceeded",

312+

additionalDetails: null,

313+

},

314+

willRetry: false,

315+

}),

316+

);

317+318+

const result = projector.buildResult(buildEmptyToolTelemetry());

319+320+

expect(result.promptError).toContain("You've reached your Codex subscription usage limit.");

321+

expect(result.promptError).toContain("Next reset in");

322+

expect(result.promptError).toContain("Run /codex account");

323+

expect(result.promptErrorSource).toBe("prompt");

324+

});

325+326+

it("uses Codex rate-limit resets for failed turns", async () => {

327+

const projector = await createProjector();

328+

const resetsAt = Math.ceil(Date.now() / 1000) + 120;

329+330+

await projector.handleNotification(rateLimitsUpdated(resetsAt));

331+

await projector.handleNotification(

332+

forCurrentTurn("turn/completed", {

333+

turn: {

334+

id: TURN_ID,

335+

status: "failed",

336+

error: {

337+

message: "You've reached your usage limit.",

338+

codexErrorInfo: "usageLimitExceeded",

339+

additionalDetails: null,

340+

},

341+

items: [],

342+

},

343+

}),

344+

);

345+346+

const result = projector.buildResult(buildEmptyToolTelemetry());

347+348+

expect(result.promptError).toContain("You've reached your Codex subscription usage limit.");

349+

expect(result.promptError).toContain("Next reset in");

350+

expect(result.promptErrorSource).toBe("prompt");

351+

});

352+353+

it("uses a recent Codex rate-limit snapshot when failed turns omit reset details", async () => {

354+

const projector = await createProjector();

355+

const resetsAt = Math.ceil(Date.now() / 1000) + 120;

356+

rememberCodexRateLimits({

357+

rateLimits: {

358+

limitId: "codex",

359+

limitName: "Codex",

360+

primary: { usedPercent: 100, windowDurationMins: 300, resetsAt },

361+

secondary: null,

362+

credits: null,

363+

planType: "plus",

364+

rateLimitReachedType: "rate_limit_reached",

365+

},

366+

rateLimitsByLimitId: null,

367+

});

368+369+

await projector.handleNotification(

370+

forCurrentTurn("turn/completed", {

371+

turn: {

372+

id: TURN_ID,

373+

status: "failed",

374+

error: {

375+

message: "You've reached your usage limit.",

376+

codexErrorInfo: "usageLimitExceeded",

377+

additionalDetails: null,

378+

},

379+

items: [],

380+

},

381+

}),

382+

);

383+384+

const result = projector.buildResult(buildEmptyToolTelemetry());

385+386+

expect(result.promptError).toContain("You've reached your Codex subscription usage limit.");

387+

expect(result.promptError).toContain("Next reset in");

388+

expect(result.promptErrorSource).toBe("prompt");

389+

});

390+283391

it("normalizes snake_case current token usage fields", async () => {

284392

const projector = await createProjector();

285393