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

推荐订阅源

P
Proofpoint News Feed
U
Unit 42
V
Visual Studio Blog
D
DataBreaches.Net
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
D
Docker
G
Google Developers Blog
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
S
SegmentFault 最新的问题

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(cli): key gemini cli auth epoch on google account ide...
openperf · 2026-04-25 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ const log = createSubsystemLogger("agents/auth-profiles");

1313

const CLAUDE_CLI_CREDENTIALS_RELATIVE_PATH = ".claude/.credentials.json";

1414

const CODEX_CLI_AUTH_FILENAME = "auth.json";

1515

const MINIMAX_CLI_CREDENTIALS_RELATIVE_PATH = ".minimax/oauth_creds.json";

16+

const GEMINI_CLI_CREDENTIALS_RELATIVE_PATH = ".gemini/oauth_creds.json";

16171718

const CLAUDE_CLI_KEYCHAIN_SERVICE = "Claude Code-credentials";

1819

const CLAUDE_CLI_KEYCHAIN_ACCOUNT = "Claude Code";

@@ -27,11 +28,13 @@ type CachedValue<T> = {

2728

let claudeCliCache: CachedValue<ClaudeCliCredential> | null = null;

2829

let codexCliCache: CachedValue<CodexCliCredential> | null = null;

2930

let minimaxCliCache: CachedValue<MiniMaxCliCredential> | null = null;

31+

let geminiCliCache: CachedValue<GeminiCliCredential> | null = null;

30323133

export function resetCliCredentialCachesForTest(): void {

3234

claudeCliCache = null;

3335

codexCliCache = null;

3436

minimaxCliCache = null;

37+

geminiCliCache = null;

3538

}

36393740

export type ClaudeCliCredential =

@@ -67,6 +70,16 @@ export type MiniMaxCliCredential = {

6770

expires: number;

6871

};

697273+

export type GeminiCliCredential = {

74+

type: "oauth";

75+

provider: "google-gemini-cli";

76+

access: string;

77+

refresh: string;

78+

expires: number;

79+

accountId?: string;

80+

email?: string;

81+

};

82+7083

type ClaudeCliFileOptions = {

7184

homeDir?: string;

7285

};

@@ -131,6 +144,11 @@ function resolveMiniMaxCliCredentialsPath(homeDir?: string) {

131144

return path.join(baseDir, MINIMAX_CLI_CREDENTIALS_RELATIVE_PATH);

132145

}

133146147+

function resolveGeminiCliCredentialsPath(homeDir?: string) {

148+

const baseDir = homeDir ?? resolveUserPath("~");

149+

return path.join(baseDir, GEMINI_CLI_CREDENTIALS_RELATIVE_PATH);

150+

}

151+134152

function readFileMtimeMs(filePath: string): number | null {

135153

try {

136154

return fs.statSync(filePath).mtimeMs;

@@ -211,6 +229,22 @@ function decodeJwtExpiryMs(token: string): number | null {

211229

}

212230

}

213231232+

function decodeJwtIdentityClaims(token: string): { sub?: string; email?: string } {

233+

const parts = token.split(".");

234+

if (parts.length < 2) {

235+

return {};

236+

}

237+

try {

238+

const payloadRaw = Buffer.from(parts[1], "base64url").toString("utf8");

239+

const payload = JSON.parse(payloadRaw) as { sub?: unknown; email?: unknown };

240+

const sub = typeof payload.sub === "string" && payload.sub ? payload.sub : undefined;

241+

const email = typeof payload.email === "string" && payload.email ? payload.email : undefined;

242+

return { sub, email };

243+

} catch {

244+

return {};

245+

}

246+

}

247+214248

function readCodexKeychainAuthRecord(options?: {

215249

codexHome?: string;

216250

platform?: NodeJS.Platform;

@@ -328,6 +362,49 @@ function readMiniMaxCliCredentials(options?: { homeDir?: string }): MiniMaxCliCr

328362

return readPortalCliOauthCredentials(credPath, "minimax-portal");

329363

}

330364365+

function readGeminiCliCredentials(options?: { homeDir?: string }): GeminiCliCredential | null {

366+

const credPath = resolveGeminiCliCredentialsPath(options?.homeDir);

367+

const raw = loadJsonFile(credPath);

368+

if (!raw || typeof raw !== "object") {

369+

return null;

370+

}

371+

const data = raw as Record<string, unknown>;

372+

const accessToken = data.access_token;

373+

const refreshToken = data.refresh_token;

374+

const expiresAt = data.expiry_date;

375+376+

if (typeof accessToken !== "string" || !accessToken) {

377+

return null;

378+

}

379+

if (typeof refreshToken !== "string" || !refreshToken) {

380+

return null;

381+

}

382+

if (typeof expiresAt !== "number" || !Number.isFinite(expiresAt)) {

383+

return null;

384+

}

385+386+

// Gemini CLI's login flow stores the openid id_token alongside the OAuth

387+

// tokens. Decode it once here to lift the Google account identity (sub,

388+

// email) onto the credential so the shared OAuth-identity encoder can key

389+

// the auth epoch on stable, non-secret identity material — matching the

390+

// Claude/Codex contract that #70132 codifies. Without this lift the encoder

391+

// collapses to a provider-keyed constant and stale bindings can survive a

392+

// re-login under a different Google account.

393+

const idTokenRaw = data.id_token;

394+

const identity =

395+

typeof idTokenRaw === "string" && idTokenRaw ? decodeJwtIdentityClaims(idTokenRaw) : {};

396+397+

return {

398+

type: "oauth",

399+

provider: "google-gemini-cli",

400+

access: accessToken,

401+

refresh: refreshToken,

402+

expires: expiresAt,

403+

...(identity.email ? { email: identity.email } : {}),

404+

...(identity.sub ? { accountId: identity.sub } : {}),

405+

};

406+

}

407+331408

function readClaudeCliKeychainCredentials(

332409

execSyncImpl: ExecSyncFn = execSync,

333410

): ClaudeCliCredential | null {

@@ -609,3 +686,20 @@ export function readMiniMaxCliCredentialsCached(options?: {

609686

readSourceFingerprint: () => readFileMtimeMs(credPath),

610687

});

611688

}

689+690+

export function readGeminiCliCredentialsCached(options?: {

691+

ttlMs?: number;

692+

homeDir?: string;

693+

}): GeminiCliCredential | null {

694+

const credPath = resolveGeminiCliCredentialsPath(options?.homeDir);

695+

return readCachedCliCredential({

696+

ttlMs: options?.ttlMs ?? 0,

697+

cache: geminiCliCache,

698+

cacheKey: credPath,

699+

read: () => readGeminiCliCredentials({ homeDir: options?.homeDir }),

700+

setCache: (next) => {

701+

geminiCliCache = next;

702+

},

703+

readSourceFingerprint: () => readFileMtimeMs(credPath),

704+

});

705+

}