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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
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
test(codex): cover app-server Docker flows · openclaw/ope...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -0,0 +1,109 @@

1+

#!/usr/bin/env -S node --import tsx

2+

import fs from "node:fs/promises";

3+

import path from "node:path";

4+5+

type CodexAuthJson = {

6+

tokens?: {

7+

account_id?: unknown;

8+

id_token?: unknown;

9+

};

10+

};

11+12+

type JwtParts = {

13+

header: string;

14+

payload: Record<string, unknown>;

15+

signature: string;

16+

};

17+18+

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

19+

const decoded = Buffer.from(value, "base64url").toString("utf-8");

20+

const parsed: unknown = JSON.parse(decoded);

21+

if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {

22+

throw new Error("JWT payload is not a JSON object.");

23+

}

24+

return parsed as Record<string, unknown>;

25+

}

26+27+

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

28+

return Buffer.from(JSON.stringify(value), "utf-8").toString("base64url");

29+

}

30+31+

function parseJwt(value: string): JwtParts {

32+

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

33+

if (parts.length !== 3 || !parts[0] || !parts[1]) {

34+

throw new Error("id_token is not a JWT.");

35+

}

36+

return {

37+

header: parts[0],

38+

payload: decodeBase64UrlJson(parts[1]),

39+

signature: parts[2] ?? "",

40+

};

41+

}

42+43+

function stringifyJwt(parts: JwtParts): string {

44+

return [parts.header, encodeBase64UrlJson(parts.payload), parts.signature].join(".");

45+

}

46+47+

export function patchCodexAuthForCi(auth: CodexAuthJson): {

48+

auth: CodexAuthJson;

49+

changed: boolean;

50+

} {

51+

const tokens = auth.tokens;

52+

if (!tokens) {

53+

return { auth, changed: false };

54+

}

55+

const accountId = typeof tokens.account_id === "string" ? tokens.account_id.trim() : "";

56+

const idToken = typeof tokens.id_token === "string" ? tokens.id_token.trim() : "";

57+

if (!accountId || !idToken) {

58+

return { auth, changed: false };

59+

}

60+61+

const jwt = parseJwt(idToken);

62+

if (typeof jwt.payload.chatgpt_account_id === "string" && jwt.payload.chatgpt_account_id) {

63+

return { auth, changed: false };

64+

}

65+66+

return {

67+

auth: {

68+

...auth,

69+

tokens: {

70+

...tokens,

71+

// Newer Codex app-server builds read ChatGPT account metadata from

72+

// id_token claims. Older local auth files can have the same value only

73+

// at tokens.account_id, so patch the staged Docker copy for CI.

74+

id_token: stringifyJwt({

75+

...jwt,

76+

payload: {

77+

...jwt.payload,

78+

chatgpt_account_id: accountId,

79+

},

80+

}),

81+

},

82+

},

83+

changed: true,

84+

};

85+

}

86+87+

export async function prepareCodexCiAuth(authPath: string): Promise<boolean> {

88+

const raw = await fs.readFile(authPath, "utf-8");

89+

const parsed = JSON.parse(raw) as CodexAuthJson;

90+

const { auth, changed } = patchCodexAuthForCi(parsed);

91+

if (!changed) {

92+

return false;

93+

}

94+

const stat = await fs.stat(authPath);

95+

await fs.writeFile(authPath, `${JSON.stringify(auth, null, 2)}\n`, "utf-8");

96+

await fs.chmod(authPath, stat.mode);

97+

return true;

98+

}

99+100+

if (path.basename(process.argv[1] ?? "") === "prepare-codex-ci-auth.ts") {

101+

const authPath = process.argv[2];

102+

if (!authPath) {

103+

throw new Error("Usage: node --import tsx scripts/prepare-codex-ci-auth.ts <auth-json-path>");

104+

}

105+

const changed = await prepareCodexCiAuth(authPath);

106+

if (changed) {

107+

console.error("Prepared staged Codex auth metadata for CI.");

108+

}

109+

}