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

推荐订阅源

T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
博客园 - Franky
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
腾讯CDC
The GitHub Blog
The GitHub Blog
D
DataBreaches.Net
IT之家
IT之家
D
Docker
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
V
V2EX
月光博客
月光博客
N
Netflix TechBlog - Medium
爱范儿
爱范儿
I
InfoQ
P
Proofpoint News Feed

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(usage): wrap malformed usage json · openclaw/openclaw...
vincentkoc · 2026-05-15 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -96,6 +96,7 @@ Docs: https://docs.openclaw.ai

9696

- Tlon/Urbit: report malformed SSE event JSON with an owned parser error instead of logging raw parser failures.

9797

- Signal: return a stable installer error when GitHub release metadata is malformed JSON.

9898

- ClawHub: report malformed successful marketplace JSON responses with owned errors instead of leaking raw parser failures.

99+

- Provider usage: report malformed successful usage JSON responses with stable provider errors instead of leaking raw parser failures.

99100

- Matrix: ignore malformed percent-encoding in optional location URI parameters instead of letting a bad `geo:` event abort inbound message handling.

100101

- Web search: auto-detect Brave through its legacy `tools.web.search.apiKey` compatibility fallback while keeping doctor migration to `plugins.entries.brave.config.webSearch.apiKey` as the canonical repair, so allowlisted isolated cron runs do not report `web_search` unavailable before migration. Fixes #81538. Thanks @atomicmonk.

101102

- Plugins: memoize repeated in-process plugin metadata snapshots and keep vanished managed-install residue from forcing full derived discovery, reducing gateway/status startup scans under large plugin sets. Fixes #81143 and #79806. (#81570) Thanks @Kaspre, @holgergruenhagen, @JanPlessow, and @mjamiv.

Original file line numberDiff line numberDiff line change

@@ -128,6 +128,15 @@ describe("fetchClaudeUsage", () => {

128128

expect(result.windows).toHaveLength(0);

129129

});

130130
131+

it("returns a stable error for malformed successful oauth usage JSON", async () => {

132+

const mockFetch = createProviderUsageFetch(async () => makeResponse(200, "{not json"));

133+
134+

const result = await fetchClaudeUsage("token", 5000, mockFetch);

135+
136+

expect(result.error).toBe("Malformed usage response");

137+

expect(result.windows).toHaveLength(0);

138+

});

139+
131140

it("falls back to claude web usage when oauth scope is missing", async () => {

132141

vi.stubEnv("CLAUDE_AI_SESSION_KEY", "sk-ant-session-key");

133142
Original file line numberDiff line numberDiff line change

@@ -1,4 +1,8 @@

1-

import { buildUsageHttpErrorSnapshot, fetchJson } from "./provider-usage.fetch.shared.js";

1+

import {

2+

buildUsageHttpErrorSnapshot,

3+

fetchJson,

4+

readUsageJson,

5+

} from "./provider-usage.fetch.shared.js";

26

import { clampPercent, PROVIDER_LABELS } from "./provider-usage.shared.js";

37

import type { ProviderUsageSnapshot, UsageWindow } from "./provider-usage.types.js";

48

@@ -83,7 +87,11 @@ async function fetchClaudeWebUsage(

8387

return null;

8488

}

8589
86-

const orgs = (await orgRes.json()) as ClaudeWebOrganizationsResponse;

90+

const parsedOrgs = await readUsageJson("anthropic", orgRes);

91+

if (!parsedOrgs.ok) {

92+

return null;

93+

}

94+

const orgs = parsedOrgs.data as ClaudeWebOrganizationsResponse;

8795

const orgId = orgs?.[0]?.uuid?.trim();

8896

if (!orgId) {

8997

return null;

@@ -99,7 +107,11 @@ async function fetchClaudeWebUsage(

99107

return null;

100108

}

101109
102-

const data = (await usageRes.json()) as ClaudeWebUsageResponse;

110+

const parsedUsage = await readUsageJson("anthropic", usageRes);

111+

if (!parsedUsage.ok) {

112+

return null;

113+

}

114+

const data = parsedUsage.data as ClaudeWebUsageResponse;

103115

const windows = buildClaudeUsageWindows(data);

104116
105117

if (windows.length === 0) {

@@ -166,7 +178,11 @@ export async function fetchClaudeUsage(

166178

});

167179

}

168180
169-

const data = (await res.json()) as ClaudeUsageResponse;

181+

const parsed = await readUsageJson("anthropic", res);

182+

if (!parsed.ok) {

183+

return parsed.snapshot;

184+

}

185+

const data = parsed.data as ClaudeUsageResponse;

170186

const windows = buildClaudeUsageWindows(data);

171187
172188

return {

Original file line numberDiff line numberDiff line change

@@ -23,6 +23,15 @@ describe("fetchCodexUsage", () => {

2323

expect(result.windows).toHaveLength(0);

2424

});

2525
26+

it("returns a stable error for malformed successful usage JSON", async () => {

27+

const mockFetch = createProviderUsageFetch(async () => makeResponse(200, "{not json"));

28+
29+

const result = await fetchCodexUsage("token", undefined, 5000, mockFetch);

30+
31+

expect(result.error).toBe("Malformed usage response");

32+

expect(result.windows).toHaveLength(0);

33+

});

34+
2635

it("parses windows, reset times, and plan balance", async () => {

2736

const mockFetch = createProviderUsageFetch(async (_url, init) => {

2837

const headers = (init?.headers as Record<string, string> | undefined) ?? {};

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,9 @@

11

import { resolveProviderRequestHeaders } from "../agents/provider-request-config.js";

2-

import { buildUsageHttpErrorSnapshot, fetchJson } from "./provider-usage.fetch.shared.js";

2+

import {

3+

buildUsageHttpErrorSnapshot,

4+

fetchJson,

5+

readUsageJson,

6+

} from "./provider-usage.fetch.shared.js";

37

import { clampPercent, PROVIDER_LABELS } from "./provider-usage.shared.js";

48

import type { ProviderUsageSnapshot, UsageWindow } from "./provider-usage.types.js";

59

@@ -85,7 +89,11 @@ export async function fetchCodexUsage(

8589

});

8690

}

8791
88-

const data = (await res.json()) as CodexUsageResponse;

92+

const parsed = await readUsageJson("openai-codex", res);

93+

if (!parsed.ok) {

94+

return parsed.snapshot;

95+

}

96+

const data = parsed.data as CodexUsageResponse;

8997

const windows: UsageWindow[] = [];

9098
9199

if (data.rate_limit?.primary_window) {

Original file line numberDiff line numberDiff line change

@@ -15,6 +15,14 @@ describe("fetchGeminiUsage", () => {

1515

expect(result.windows).toHaveLength(0);

1616

});

1717
18+

it("returns a stable error for malformed successful usage JSON", async () => {

19+

const mockFetch = createProviderUsageFetch(async () => makeResponse(200, "{not json"));

20+

const result = await fetchGeminiUsage("token", 5000, mockFetch, usageProvider);

21+
22+

expect(result.error).toBe("Malformed usage response");

23+

expect(result.windows).toHaveLength(0);

24+

});

25+
1826

it("selects the lowest remaining fraction per model family", async () => {

1927

const mockFetch = createProviderUsageFetch(async (_url, init) => {

2028

const headers = (init?.headers as Record<string, string> | undefined) ?? {};

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,9 @@

11

import { normalizeLowercaseStringOrEmpty } from "../shared/string-coerce.js";

2-

import { buildUsageHttpErrorSnapshot, fetchJson } from "./provider-usage.fetch.shared.js";

2+

import {

3+

buildUsageHttpErrorSnapshot,

4+

fetchJson,

5+

readUsageJson,

6+

} from "./provider-usage.fetch.shared.js";

37

import { clampPercent, PROVIDER_LABELS } from "./provider-usage.shared.js";

48

import type {

59

ProviderUsageSnapshot,

@@ -38,7 +42,11 @@ export async function fetchGeminiUsage(

3842

});

3943

}

4044
41-

const data = (await res.json()) as GeminiUsageResponse;

45+

const parsed = await readUsageJson(provider, res);

46+

if (!parsed.ok) {

47+

return parsed.snapshot;

48+

}

49+

const data = parsed.data as GeminiUsageResponse;

4250

const quotas: Record<string, number> = {};

4351
4452

for (const bucket of data.buckets || []) {

Original file line numberDiff line numberDiff line change

@@ -50,3 +50,17 @@ export function buildUsageHttpErrorSnapshot(

5050

const suffix = options.message?.trim() ? `: ${options.message.trim()}` : "";

5151

return buildUsageErrorSnapshot(options.provider, `HTTP ${options.status}${suffix}`);

5252

}

53+
54+

export async function readUsageJson(

55+

provider: UsageProviderId,

56+

response: Response,

57+

): Promise<{ ok: true; data: unknown } | { ok: false; snapshot: ProviderUsageSnapshot }> {

58+

try {

59+

return { ok: true, data: await response.json() };

60+

} catch {

61+

return {

62+

ok: false,

63+

snapshot: buildUsageErrorSnapshot(provider, "Malformed usage response"),

64+

};

65+

}

66+

}

Original file line numberDiff line numberDiff line change

@@ -11,6 +11,14 @@ describe("fetchZaiUsage", () => {

1111

expect(result.windows).toHaveLength(0);

1212

});

1313
14+

it("returns a stable error for malformed successful usage JSON", async () => {

15+

const mockFetch = createProviderUsageFetch(async () => makeResponse(200, "{not json"));

16+

const result = await fetchZaiUsage("key", 5000, mockFetch);

17+
18+

expect(result.error).toBe("Malformed usage response");

19+

expect(result.windows).toHaveLength(0);

20+

});

21+
1422

it("returns API message errors for unsuccessful payloads", async () => {

1523

const mockFetch = createProviderUsageFetch(async () =>

1624

makeResponse(200, {

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,8 @@

1-

import { buildUsageHttpErrorSnapshot, fetchJson } from "./provider-usage.fetch.shared.js";

1+

import {

2+

buildUsageHttpErrorSnapshot,

3+

fetchJson,

4+

readUsageJson,

5+

} from "./provider-usage.fetch.shared.js";

26

import { clampPercent, PROVIDER_LABELS } from "./provider-usage.shared.js";

37

import type { ProviderUsageSnapshot, UsageWindow } from "./provider-usage.types.js";

48

@@ -44,7 +48,11 @@ export async function fetchZaiUsage(

4448

});

4549

}

4650
47-

const data = (await res.json()) as ZaiUsageResponse;

51+

const parsed = await readUsageJson("zai", res);

52+

if (!parsed.ok) {

53+

return parsed.snapshot;

54+

}

55+

const data = parsed.data as ZaiUsageResponse;

4856

if (!data.success || data.code !== 200) {

4957

const errorMessage = typeof data.msg === "string" ? data.msg.trim() : "";

5058

return {