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

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

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(auth): bootstrap codex cli credential without clobber...
Gforce10-des · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,5 +1,12 @@

1-

import { readMiniMaxCliCredentialsCached } from "../cli-credentials.js";

2-

import { EXTERNAL_CLI_SYNC_TTL_MS, MINIMAX_CLI_PROFILE_ID } from "./constants.js";

1+

import {

2+

readCodexCliCredentialsCached,

3+

readMiniMaxCliCredentialsCached,

4+

} from "../cli-credentials.js";

5+

import {

6+

EXTERNAL_CLI_SYNC_TTL_MS,

7+

MINIMAX_CLI_PROFILE_ID,

8+

OPENAI_CODEX_DEFAULT_PROFILE_ID,

9+

} from "./constants.js";

310

import { log } from "./constants.js";

411

import {

512

areOAuthCredentialsEquivalent,

@@ -29,6 +36,12 @@ type ExternalCliSyncProvider = {

2936

profileId: string;

3037

provider: string;

3138

readCredentials: () => OAuthCredential | null;

39+

// bootstrapOnly providers adopt the external CLI credential only to

40+

// seed an empty slot; once a local OAuth credential exists for the

41+

// profile, the local refresh token is treated as canonical and the

42+

// CLI state must not replace or shadow it. Codex requires this to

43+

// avoid clobbering a locally refreshed token with stale CLI state.

44+

bootstrapOnly?: boolean;

3245

};

33463447

function normalizeAuthIdentityToken(value: string | undefined): string | undefined {

@@ -72,6 +85,12 @@ export function isSafeToUseExternalCliCredential(

7285

}

73867487

const EXTERNAL_CLI_SYNC_PROVIDERS: ExternalCliSyncProvider[] = [

88+

{

89+

profileId: OPENAI_CODEX_DEFAULT_PROFILE_ID,

90+

provider: "openai-codex",

91+

readCredentials: () => readCodexCliCredentialsCached({ ttlMs: EXTERNAL_CLI_SYNC_TTL_MS }),

92+

bootstrapOnly: true,

93+

},

7594

{

7695

profileId: MINIMAX_CLI_PROFILE_ID,

7796

provider: "minimax-portal",

@@ -103,6 +122,13 @@ export function readExternalCliBootstrapCredential(params: {

103122

if (!provider) {

104123

return null;

105124

}

125+

// bootstrapOnly providers must not replace an existing local credential

126+

// during runtime refresh. The oauth-manager only calls this hook when a

127+

// local credential is already present, so returning null here keeps the

128+

// locally stored refresh token canonical.

129+

if (provider.bootstrapOnly) {

130+

return null;

131+

}

106132

return provider.readCredentials();

107133

}

108134

@@ -132,6 +158,13 @@ export function resolveExternalCliAuthProfiles(

132158

});

133159

continue;

134160

}

161+

if (providerConfig.bootstrapOnly && existingOAuth) {

162+

log.debug("kept local oauth over external cli bootstrap-only provider", {

163+

profileId: providerConfig.profileId,

164+

provider: providerConfig.provider,

165+

});

166+

continue;

167+

}

135168

if (existingOAuth && !isSafeToUseExternalCliCredential(existingOAuth, creds)) {

136169

log.warn("refused external cli oauth bootstrap: identity mismatch", {

137170

profileId: providerConfig.profileId,