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

推荐订阅源

Last Week in AI
Last Week in AI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
V
V2EX
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
博客园 - 聂微东
博客园 - Franky
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
U
Unit 42
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
P
Proofpoint News Feed
L
LangChain 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(codex): bridge cli api-key auth into app-server · ope...
vincentkoc · 2026-05-26 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ import {

1313

refreshCodexAppServerAuthTokens,

1414

resolveCodexAppServerAuthAccountCacheKey,

1515

resolveCodexAppServerAuthProfileId,

16+

resolveCodexAppServerFallbackApiKeyCacheKey,

1617

resolveCodexAppServerHomeDir,

1718

resolveCodexAppServerNativeHomeDir,

1819

} from "./auth-bridge.js";

@@ -172,6 +173,17 @@ async function writeCodexCliAuthFile(codexHome: string): Promise<void> {

172173

);

173174

}

174175176+

async function writeCodexCliApiKeyAuthFile(codexHome: string): Promise<void> {

177+

await fs.mkdir(codexHome, { recursive: true });

178+

await fs.writeFile(

179+

path.join(codexHome, "auth.json"),

180+

`${JSON.stringify({

181+

auth_mode: "apikey",

182+

OPENAI_API_KEY: "cli-auth-json-api-key",

183+

})}\n`,

184+

);

185+

}

186+175187

describe("bridgeCodexAppServerStartOptions", () => {

176188

it("sets agent-owned CODEX_HOME without overriding HOME for local app-server launches", async () => {

177189

const agentDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

@@ -1042,6 +1054,92 @@ describe("bridgeCodexAppServerStartOptions", () => {

10421054

}

10431055

});

104410561057+

it("uses Codex CLI api-key auth.json when no auth profile or env key exists", async () => {

1058+

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

1059+

const agentDir = path.join(root, "agent");

1060+

const codexHome = path.join(root, "codex-cli");

1061+

const request = vi.fn(async (method: string) => {

1062+

if (method === "account/read") {

1063+

return { account: null, requiresOpenaiAuth: true };

1064+

}

1065+

return { type: "apiKey" };

1066+

});

1067+

vi.stubEnv("CODEX_HOME", codexHome);

1068+

vi.stubEnv("CODEX_API_KEY", "");

1069+

vi.stubEnv("OPENAI_API_KEY", "");

1070+

try {

1071+

await writeCodexCliApiKeyAuthFile(codexHome);

1072+1073+

await applyCodexAppServerAuthProfile({

1074+

client: { request } as never,

1075+

agentDir,

1076+

startOptions: createStartOptions({

1077+

env: { CODEX_HOME: path.join(root, "isolated-codex-home") },

1078+

}),

1079+

});

1080+1081+

expect(request).toHaveBeenNthCalledWith(1, "account/read", { refreshToken: false });

1082+

expect(request).toHaveBeenNthCalledWith(2, "account/login/start", {

1083+

type: "apiKey",

1084+

apiKey: "cli-auth-json-api-key",

1085+

});

1086+

} finally {

1087+

await fs.rm(root, { recursive: true, force: true });

1088+

}

1089+

});

1090+1091+

it("includes Codex CLI api-key auth.json in fallback app-server cache keys", async () => {

1092+

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

1093+

const codexHome = path.join(root, "codex-cli");

1094+

try {

1095+

await writeCodexCliApiKeyAuthFile(codexHome);

1096+1097+

const first = resolveCodexAppServerFallbackApiKeyCacheKey({

1098+

startOptions: createStartOptions(),

1099+

baseEnv: { CODEX_HOME: codexHome },

1100+

});

1101+

await fs.writeFile(

1102+

path.join(codexHome, "auth.json"),

1103+

`${JSON.stringify({

1104+

auth_mode: "apikey",

1105+

OPENAI_API_KEY: "second-cli-auth-json-api-key",

1106+

})}\n`,

1107+

);

1108+

const second = resolveCodexAppServerFallbackApiKeyCacheKey({

1109+

startOptions: createStartOptions(),

1110+

baseEnv: { CODEX_HOME: codexHome },

1111+

});

1112+1113+

expect(first).toMatch(/^CODEX_AUTH_JSON:sha256:[a-f0-9]{64}$/);

1114+

expect(second).toMatch(/^CODEX_AUTH_JSON:sha256:[a-f0-9]{64}$/);

1115+

expect(second).not.toBe(first);

1116+

expect(first).not.toContain("cli-auth-json-api-key");

1117+

expect(second).not.toContain("second-cli-auth-json-api-key");

1118+

} finally {

1119+

await fs.rm(root, { recursive: true, force: true });

1120+

}

1121+

});

1122+1123+

it("does not include Codex CLI api-key auth.json in websocket fallback cache keys", async () => {

1124+

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

1125+

const codexHome = path.join(root, "codex-cli");

1126+

try {

1127+

await writeCodexCliApiKeyAuthFile(codexHome);

1128+1129+

expect(

1130+

resolveCodexAppServerFallbackApiKeyCacheKey({

1131+

startOptions: createStartOptions({

1132+

transport: "websocket",

1133+

url: "ws://127.0.0.1:1455",

1134+

}),

1135+

baseEnv: { CODEX_HOME: codexHome },

1136+

}),

1137+

).toBeUndefined();

1138+

} finally {

1139+

await fs.rm(root, { recursive: true, force: true });

1140+

}

1141+

});

1142+10451143

it("honors clearEnv before env API-key fallback", async () => {

10461144

const agentDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

10471145

const request = vi.fn(async (method: string) => {