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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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(codex): guard against stale codex app snapshots leadi...
kevinslin · 2026-05-19 · via Recent Commits to openclaw:main

@@ -1,6 +1,8 @@

1-

import type { v2 } from "./protocol.js";

1+

import { embeddedAgentLog } from "openclaw/plugin-sdk/agent-harness-runtime";

2+

import type { JsonValue, v2 } from "./protocol.js";

2334

export const CODEX_APP_INVENTORY_CACHE_TTL_MS = 60 * 60 * 1_000;

5+

const MAX_SERIALIZED_ERROR_MESSAGE_LENGTH = 500;

4657

export type CodexAppInventoryRequest = (

68

method: "app/list",

@@ -50,12 +52,15 @@ type RefreshParams = {

5052

request: CodexAppInventoryRequest;

5153

nowMs?: number;

5254

forceRefetch?: boolean;

55+

suppressRefresh?: boolean;

5356

};

54575558

export class CodexAppInventoryCache {

5659

private readonly ttlMs: number;

5760

private readonly entries = new Map<string, CacheEntry>();

5861

private readonly inFlight = new Map<string, Promise<CodexAppInventorySnapshot>>();

62+

// Per-key refresh generation. Each refresh attempt claims the next token so

63+

// an older request that finishes late cannot overwrite a newer snapshot.

5964

private readonly refreshTokens = new Map<string, number>();

6065

private readonly diagnostics = new Map<string, CodexAppInventoryCacheDiagnostic>();

6166

private revision = 0;

@@ -68,7 +73,7 @@ export class CodexAppInventoryCache {

6873

const nowMs = params.nowMs ?? Date.now();

6974

const entry = this.entries.get(params.key);

7075

if (!entry) {

71-

const refreshScheduled = this.scheduleRefresh(params);

76+

const refreshScheduled = params.suppressRefresh ? false : this.scheduleRefresh(params);

7277

return {

7378

state: "missing",

7479

key: params.key,

@@ -168,26 +173,49 @@ export class CodexAppInventoryCache {

168173

expiresAtMs: nowMs + this.ttlMs,

169174

revision: this.revision,

170175

};

176+

// Only publish this snapshot if no newer refresh started for the same key

177+

// while this request was in flight.

171178

if (this.refreshTokens.get(params.key) === refreshToken) {

172179

this.entries.set(params.key, { ...snapshot, invalidated: false });

173180

this.diagnostics.delete(params.key);

174181

}

175182

return snapshot;

176183

} catch (error) {

177184

const diagnostic = {

178-

message: error instanceof Error ? error.message : String(error),

185+

message: sanitizeErrorMessage(error instanceof Error ? error.message : String(error)),

179186

atMs: nowMs,

180187

};

181188

this.diagnostics.set(params.key, diagnostic);

182189

const entry = this.entries.get(params.key);

183190

if (entry) {

184191

entry.lastError = diagnostic;

185192

}

193+

embeddedAgentLog.warn("codex app inventory refresh failed", {

194+

forceRefetch: params.forceRefetch === true,

195+

keyFingerprint: fingerprintInventoryCacheKey(params.key),

196+

error: serializeCodexAppInventoryError(error),

197+

});

186198

throw error;

187199

}

188200

}

189201

}

190202203+

export function serializeCodexAppInventoryError(error: unknown): Record<string, unknown> {

204+

const record = isRecord(error) ? error : undefined;

205+

const data = record && "data" in record ? redactErrorData(record.data) : undefined;

206+

return {

207+

name:

208+

error instanceof Error

209+

? error.name

210+

: typeof record?.name === "string"

211+

? record.name

212+

: undefined,

213+

message: sanitizeErrorMessage(error instanceof Error ? error.message : String(error)),

214+

...(typeof record?.code === "number" ? { code: record.code } : {}),

215+

...(data !== undefined ? { data } : {}),

216+

};

217+

}

218+191219

export const defaultCodexAppInventoryCache = new CodexAppInventoryCache();

192220193221

export function buildCodexAppInventoryCacheKey(input: CodexAppInventoryCacheKeyInput): string {

@@ -223,3 +251,74 @@ function stripEntryState(entry: CacheEntry): CodexAppInventorySnapshot {

223251

const { invalidated: _invalidated, ...snapshot } = entry;

224252

return snapshot;

225253

}

254+255+

function fingerprintInventoryCacheKey(key: string): string {

256+

let hash = 0;

257+

for (let index = 0; index < key.length; index += 1) {

258+

hash = (hash * 31 + key.charCodeAt(index)) >>> 0;

259+

}

260+

return hash.toString(16).padStart(8, "0");

261+

}

262+263+

function isRecord(value: unknown): value is Record<string, unknown> {

264+

return Boolean(value && typeof value === "object" && !Array.isArray(value));

265+

}

266+267+

function redactErrorData(value: unknown, depth = 0): JsonValue | undefined {

268+

if (value === undefined) {

269+

return undefined;

270+

}

271+

if (value === null || typeof value === "boolean" || typeof value === "number") {

272+

return value;

273+

}

274+

if (depth > 6) {

275+

return "[truncated]";

276+

}

277+

if (Array.isArray(value)) {

278+

return value.map((entry) => redactErrorData(entry, depth + 1) ?? null);

279+

}

280+

if (isRecord(value)) {

281+

const redacted: Record<string, JsonValue> = {};

282+

for (const [key, entry] of Object.entries(value)) {

283+

redacted[key] = isSensitiveErrorDataKey(key)

284+

? "<redacted>"

285+

: (redactErrorData(entry, depth + 1) ?? null);

286+

}

287+

return redacted;

288+

}

289+

if (typeof value === "string" && value.length > 500) {

290+

return `${value.slice(0, 500)}...`;

291+

}

292+

if (typeof value === "string") {

293+

return value;

294+

}

295+

if (typeof value === "bigint") {

296+

return value.toString();

297+

}

298+

if (typeof value === "symbol") {

299+

return value.description ? `Symbol(${value.description})` : "Symbol()";

300+

}

301+

if (typeof value === "function") {

302+

return value.name ? `[function ${value.name}]` : "[function]";

303+

}

304+

return "[unserializable]";

305+

}

306+307+

function sanitizeErrorMessage(message: string): string {

308+

const htmlStart = message.search(/<html[\s>]/i);

309+

const withoutHtml =

310+

htmlStart >= 0

311+

? `${message.slice(0, htmlStart).trimEnd()} [HTML response body omitted]`

312+

: message;

313+

const redacted = withoutHtml.replace(

314+

/([?&][^=\s"'<>]*(?:api[_-]?key|authorization|cookie|credential|password|secret|token|tk)[^=\s"'<>]*=)[^&\s"'<>]+/gi,

315+

"$1<redacted>",

316+

);

317+

return redacted.length > MAX_SERIALIZED_ERROR_MESSAGE_LENGTH

318+

? `${redacted.slice(0, MAX_SERIALIZED_ERROR_MESSAGE_LENGTH)}...`

319+

: redacted;

320+

}

321+322+

function isSensitiveErrorDataKey(key: string): boolean {

323+

return /api[_-]?key|authorization|cookie|credential|password|secret|token/i.test(key);

324+

}