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

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS 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): rotate shared app-server clients on auth chan...
Lucenx9 · 2026-04-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@ import fs from "node:fs/promises";

22

import { describe, expect, it } from "vitest";

33

import {

44

CODEX_APP_SERVER_CONFIG_KEYS,

5+

codexAppServerStartOptionsKey,

56

readCodexPluginConfig,

67

resolveCodexAppServerRuntimeOptions,

78

} from "./config.js";

@@ -75,6 +76,29 @@ describe("Codex app-server config", () => {

7576

);

7677

});

7778
79+

it("derives distinct shared-client keys for distinct auth tokens without exposing them", () => {

80+

const first = codexAppServerStartOptionsKey({

81+

transport: "websocket",

82+

command: "codex",

83+

args: [],

84+

url: "ws://127.0.0.1:39175",

85+

authToken: "tok_first",

86+

headers: {},

87+

});

88+

const second = codexAppServerStartOptionsKey({

89+

transport: "websocket",

90+

command: "codex",

91+

args: [],

92+

url: "ws://127.0.0.1:39175",

93+

authToken: "tok_second",

94+

headers: {},

95+

});

96+
97+

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

98+

expect(first).not.toContain("tok_first");

99+

expect(second).not.toContain("tok_second");

100+

});

101+
78102

it("keeps runtime config keys aligned with manifest schema and UI hints", async () => {

79103

const manifest = JSON.parse(

80104

await fs.readFile(new URL("../../openclaw.plugin.json", import.meta.url), "utf8"),

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

import { createHash } from "node:crypto";

12

import { z } from "zod";

23
34

export type CodexAppServerTransportMode = "stdio" | "websocket";

@@ -156,7 +157,7 @@ export function codexAppServerStartOptionsKey(options: CodexAppServerStartOption

156157

command: options.command,

157158

args: options.args,

158159

url: options.url ?? null,

159-

authToken: options.authToken ? "<set>" : null,

160+

authToken: hashSecretForKey(options.authToken),

160161

headers: Object.entries(options.headers).toSorted(([left], [right]) =>

161162

left.localeCompare(right),

162163

),

@@ -223,6 +224,13 @@ function readNonEmptyString(value: unknown): string | undefined {

223224

return trimmed || undefined;

224225

}

225226
227+

function hashSecretForKey(value: string | undefined): string | null {

228+

if (!value) {

229+

return null;

230+

}

231+

return createHash("sha256").update(value).digest("hex");

232+

}

233+
226234

function splitShellWords(value: string): string[] {

227235

const words: string[] = [];

228236

let current = "";

Original file line numberDiff line numberDiff line change

@@ -102,4 +102,46 @@ describe("shared Codex app-server client", () => {

102102

}),

103103

);

104104

});

105+
106+

it("restarts the shared client when the bridged auth token changes", async () => {

107+

const first = createClientHarness();

108+

const second = createClientHarness();

109+

const startSpy = vi

110+

.spyOn(CodexAppServerClient, "start")

111+

.mockReturnValueOnce(first.client)

112+

.mockReturnValueOnce(second.client);

113+
114+

const firstList = listCodexAppServerModels({

115+

timeoutMs: 1000,

116+

startOptions: {

117+

transport: "websocket",

118+

command: "codex",

119+

args: [],

120+

url: "ws://127.0.0.1:39175",

121+

authToken: "tok-first",

122+

headers: {},

123+

},

124+

});

125+

await sendInitializeResult(first, "openclaw/0.118.0 (macOS; test)");

126+

await sendEmptyModelList(first);

127+

await expect(firstList).resolves.toEqual({ models: [] });

128+
129+

const secondList = listCodexAppServerModels({

130+

timeoutMs: 1000,

131+

startOptions: {

132+

transport: "websocket",

133+

command: "codex",

134+

args: [],

135+

url: "ws://127.0.0.1:39175",

136+

authToken: "tok-second",

137+

headers: {},

138+

},

139+

});

140+

await sendInitializeResult(second, "openclaw/0.118.0 (macOS; test)");

141+

await sendEmptyModelList(second);

142+

await expect(secondList).resolves.toEqual({ models: [] });

143+
144+

expect(startSpy).toHaveBeenCalledTimes(2);

145+

expect(first.process.kill).toHaveBeenCalledWith("SIGTERM");

146+

});

105147

});