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

推荐订阅源

B
Blog RSS Feed
B
Blog
N
Netflix TechBlog - Medium
量子位
月光博客
月光博客
博客园_首页
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
M
MIT News - Artificial intelligence
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
L
LangChain Blog
GbyAI
GbyAI
IT之家
IT之家
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

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: resolve Codex native auth by profile provider · open...
keshavbotage · 2026-05-04 · via Recent Commits to openclaw:main

@@ -1,11 +1,27 @@

11

import fs from "node:fs/promises";

22

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

3+

import {

4+

ensureAuthProfileStore,

5+

resolveOpenClawAgentDir,

6+

resolveProviderIdForAuth,

7+

type AuthProfileStore,

8+

} from "openclaw/plugin-sdk/agent-runtime";

39

import type { CodexAppServerApprovalPolicy, CodexAppServerSandboxMode } from "./config.js";

410

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

511612

const CODEX_APP_SERVER_NATIVE_AUTH_PROVIDER = "openai-codex";

713

const PUBLIC_OPENAI_MODEL_PROVIDER = "openai";

81415+

type ProviderAuthAliasLookupParams = Parameters<typeof resolveProviderIdForAuth>[1];

16+

type ProviderAuthAliasConfig = NonNullable<ProviderAuthAliasLookupParams>["config"];

17+18+

export type CodexAppServerAuthProfileLookup = {

19+

authProfileId?: string;

20+

authProfileStore?: AuthProfileStore;

21+

agentDir?: string;

22+

config?: ProviderAuthAliasConfig;

23+

};

24+925

export type CodexAppServerThreadBinding = {

1026

schemaVersion: 1;

1127

threadId: string;

@@ -28,6 +44,7 @@ export function resolveCodexAppServerBindingPath(sessionFile: string): string {

28442945

export async function readCodexAppServerBinding(

3046

sessionFile: string,

47+

lookup: Omit<CodexAppServerAuthProfileLookup, "authProfileId"> = {},

3148

): Promise<CodexAppServerThreadBinding | undefined> {

3249

const path = resolveCodexAppServerBindingPath(sessionFile);

3350

let raw: string;

@@ -45,15 +62,18 @@ export async function readCodexAppServerBinding(

4562

if (parsed.schemaVersion !== 1 || typeof parsed.threadId !== "string") {

4663

return undefined;

4764

}

65+

const authProfileId =

66+

typeof parsed.authProfileId === "string" ? parsed.authProfileId : undefined;

4867

return {

4968

schemaVersion: 1,

5069

threadId: parsed.threadId,

5170

sessionFile,

5271

cwd: typeof parsed.cwd === "string" ? parsed.cwd : "",

53-

authProfileId: typeof parsed.authProfileId === "string" ? parsed.authProfileId : undefined,

72+

authProfileId,

5473

model: typeof parsed.model === "string" ? parsed.model : undefined,

5574

modelProvider: normalizeCodexAppServerBindingModelProvider({

56-

authProfileId: typeof parsed.authProfileId === "string" ? parsed.authProfileId : undefined,

75+

...lookup,

76+

authProfileId,

5777

modelProvider: typeof parsed.modelProvider === "string" ? parsed.modelProvider : undefined,

5878

}),

5979

approvalPolicy: readApprovalPolicy(parsed.approvalPolicy),

@@ -80,6 +100,7 @@ export async function writeCodexAppServerBinding(

80100

> & {

81101

createdAt?: string;

82102

},

103+

lookup: Omit<CodexAppServerAuthProfileLookup, "authProfileId"> = {},

83104

): Promise<void> {

84105

const now = new Date().toISOString();

85106

const payload: CodexAppServerThreadBinding = {

@@ -90,6 +111,7 @@ export async function writeCodexAppServerBinding(

90111

authProfileId: binding.authProfileId,

91112

model: binding.model,

92113

modelProvider: normalizeCodexAppServerBindingModelProvider({

114+

...lookup,

93115

authProfileId: binding.authProfileId,

94116

modelProvider: binding.modelProvider,

95117

}),

@@ -120,32 +142,80 @@ function isNotFound(error: unknown): boolean {

120142

return Boolean(error && typeof error === "object" && "code" in error && error.code === "ENOENT");

121143

}

122144123-

export function isCodexAppServerNativeAuthProfileId(authProfileId: string | undefined): boolean {

124-

const normalized = authProfileId?.trim().toLowerCase();

125-

return Boolean(

126-

normalized &&

127-

(normalized === CODEX_APP_SERVER_NATIVE_AUTH_PROVIDER ||

128-

normalized.startsWith(`${CODEX_APP_SERVER_NATIVE_AUTH_PROVIDER}:`)),

129-

);

145+

export function isCodexAppServerNativeAuthProfile(

146+

lookup: CodexAppServerAuthProfileLookup,

147+

): boolean {

148+

const authProfileId = lookup.authProfileId?.trim();

149+

if (!authProfileId) {

150+

return false;

151+

}

152+

try {

153+

const credential = resolveCodexAppServerAuthProfileCredential({

154+

...lookup,

155+

authProfileId,

156+

});

157+

return isCodexAppServerNativeAuthProvider({

158+

provider: credential?.provider,

159+

config: lookup.config,

160+

});

161+

} catch (error) {

162+

embeddedAgentLog.debug("failed to resolve codex app-server auth profile provider", {

163+

authProfileId,

164+

error,

165+

});

166+

return false;

167+

}

130168

}

131169132170

export function normalizeCodexAppServerBindingModelProvider(params: {

133171

authProfileId?: string;

134172

modelProvider?: string;

173+

authProfileStore?: AuthProfileStore;

174+

agentDir?: string;

175+

config?: ProviderAuthAliasConfig;

135176

}): string | undefined {

136177

const modelProvider = params.modelProvider?.trim();

137178

if (!modelProvider) {

138179

return undefined;

139180

}

140181

if (

141-

isCodexAppServerNativeAuthProfileId(params.authProfileId) &&

182+

isCodexAppServerNativeAuthProfile(params) &&

142183

modelProvider.toLowerCase() === PUBLIC_OPENAI_MODEL_PROVIDER

143184

) {

144185

return undefined;

145186

}

146187

return modelProvider;

147188

}

148189190+

function resolveCodexAppServerAuthProfileCredential(

191+

lookup: CodexAppServerAuthProfileLookup,

192+

): AuthProfileStore["profiles"][string] | undefined {

193+

const authProfileId = lookup.authProfileId?.trim();

194+

if (!authProfileId) {

195+

return undefined;

196+

}

197+

const store = lookup.authProfileStore ?? loadCodexAppServerAuthProfileStore(lookup.agentDir);

198+

return store.profiles[authProfileId];

199+

}

200+201+

function loadCodexAppServerAuthProfileStore(agentDir: string | undefined): AuthProfileStore {

202+

return ensureAuthProfileStore(agentDir?.trim() || resolveOpenClawAgentDir(), {

203+

allowKeychainPrompt: false,

204+

});

205+

}

206+207+

function isCodexAppServerNativeAuthProvider(params: {

208+

provider?: string;

209+

config?: ProviderAuthAliasConfig;

210+

}): boolean {

211+

const provider = params.provider?.trim();

212+

return Boolean(

213+

provider &&

214+

resolveProviderIdForAuth(provider, { config: params.config }) ===

215+

CODEX_APP_SERVER_NATIVE_AUTH_PROVIDER,

216+

);

217+

}

218+149219

function readApprovalPolicy(value: unknown): CodexAppServerApprovalPolicy | undefined {

150220

return value === "never" ||

151221

value === "on-request" ||