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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
GbyAI
GbyAI
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
爱范儿
爱范儿
N
Netflix TechBlog - Medium
U
Unit 42
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 叶小钗
G
Google Developers Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
腾讯CDC

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 plugin migration selection UX (#79160) · opencl...
kevinslin · 2026-05-09 · via Recent Commits to openclaw:main

@@ -32,6 +32,7 @@ const CODEX_PLUGIN_NATIVE_CONFIG_PATH = [

3232

"config",

3333

"codexPlugins",

3434

] as const;

35+

const MIGRATION_REASON_PLUGIN_EXISTS = "plugin exists";

35363637

export type CodexPluginMigrationConfigEntry = {

3738

configKey: string;

@@ -107,12 +108,42 @@ function uniquePluginConfigKey(

107108

return sanitizeName(`${base}-${next}`) || base;

108109

}

109110110-

function buildPluginItems(plugins: readonly CodexPluginSource[]): MigrationItem[] {

111+

function readExistingCodexPluginEntries(

112+

config: MigrationProviderContext["config"],

113+

): Record<string, unknown> {

114+

const entries = readMigrationConfigPath(config as Record<string, unknown>, [

115+

...CODEX_PLUGIN_NATIVE_CONFIG_PATH,

116+

"plugins",

117+

]);

118+

return isRecord(entries) ? entries : {};

119+

}

120+121+

function hasExistingCodexPluginEntry(

122+

existingEntries: Record<string, unknown>,

123+

configKey: string,

124+

pluginName: string,

125+

): boolean {

126+

if (existingEntries[configKey] !== undefined) {

127+

return true;

128+

}

129+

return Object.values(existingEntries).some((entry) => {

130+

if (!isRecord(entry)) {

131+

return false;

132+

}

133+

return entry.pluginName === pluginName;

134+

});

135+

}

136+137+

function buildPluginItems(

138+

ctx: MigrationProviderContext,

139+

plugins: readonly CodexPluginSource[],

140+

): MigrationItem[] {

111141

const baseCounts = new Map<string, number>();

112142

for (const plugin of plugins.filter((entry) => entry.migratable)) {

113143

const base = sanitizeName(plugin.pluginName ?? plugin.name) || "codex-plugin";

114144

baseCounts.set(base, (baseCounts.get(base) ?? 0) + 1);

115145

}

146+

const existingPluginEntries = readExistingCodexPluginEntries(ctx.config);

116147

const usedCounts = new Map<string, number>();

117148

let manualIndex = 0;

118149

const items: MigrationItem[] = [];

@@ -123,11 +154,16 @@ function buildPluginItems(plugins: readonly CodexPluginSource[]): MigrationItem[

123154

plugin.pluginName

124155

) {

125156

const configKey = uniquePluginConfigKey(plugin, baseCounts, usedCounts);

157+

const conflict =

158+

!ctx.overwrite &&

159+

hasExistingCodexPluginEntry(existingPluginEntries, configKey, plugin.pluginName);

126160

items.push(

127161

createMigrationItem({

128162

id: `plugin:${configKey}`,

129163

kind: "plugin",

130164

action: "install",

165+

status: conflict ? "conflict" : "planned",

166+

reason: conflict ? MIGRATION_REASON_PLUGIN_EXISTS : undefined,

131167

source: plugin.source,

132168

target: `plugins.entries.codex.config.codexPlugins.plugins.${configKey}`,

133169

message: `Install Codex plugin "${plugin.pluginName}" in the OpenClaw-managed Codex app-server runtime.`,

@@ -188,9 +224,15 @@ function readExistingAllowDestructiveActions(

188224

return typeof value === "boolean" ? value : undefined;

189225

}

190226227+

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

228+

return Boolean(value && typeof value === "object" && !Array.isArray(value));

229+

}

230+191231

export function buildCodexPluginsConfigValue(

192232

entries: readonly CodexPluginMigrationConfigEntry[],

193-

params: { config?: MigrationProviderContext["config"] } = {},

233+

params: {

234+

config?: MigrationProviderContext["config"];

235+

} = {},

194236

): Record<string, unknown> {

195237

const plugins = Object.fromEntries(

196238

entries

@@ -204,18 +246,19 @@ export function buildCodexPluginsConfigValue(

204246

},

205247

]),

206248

);

249+

const config: Record<string, unknown> = {

250+

codexPlugins: {

251+

enabled: true,

252+

allow_destructive_actions:

253+

params.config === undefined

254+

? false

255+

: (readExistingAllowDestructiveActions(params.config) ?? false),

256+

plugins,

257+

},

258+

};

207259

return {

208260

enabled: true,

209-

config: {

210-

codexPlugins: {

211-

enabled: true,

212-

allow_destructive_actions:

213-

params.config === undefined

214-

? false

215-

: (readExistingAllowDestructiveActions(params.config) ?? false),

216-

plugins,

217-

},

218-

},

261+

config,

219262

};

220263

}

221264

@@ -231,14 +274,51 @@ export function hasCodexPluginConfigConflict(

231274

return true;

232275

}

233276

const nativeConfig = (value.config as Record<string, unknown> | undefined)?.codexPlugins;

234-

return hasMigrationConfigPatchConflict(config, CODEX_PLUGIN_NATIVE_CONFIG_PATH, nativeConfig);

277+

if (!isRecord(nativeConfig)) {

278+

return hasMigrationConfigPatchConflict(config, CODEX_PLUGIN_NATIVE_CONFIG_PATH, nativeConfig);

279+

}

280+

const existingNativeConfig = readMigrationConfigPath(

281+

config as Record<string, unknown>,

282+

CODEX_PLUGIN_NATIVE_CONFIG_PATH,

283+

);

284+

if (existingNativeConfig === undefined) {

285+

return false;

286+

}

287+

if (!isRecord(existingNativeConfig)) {

288+

return true;

289+

}

290+

if (existingNativeConfig.enabled !== undefined && existingNativeConfig.enabled !== true) {

291+

return true;

292+

}

293+

const allowDestructiveActions = nativeConfig.allow_destructive_actions;

294+

if (

295+

existingNativeConfig.allow_destructive_actions !== undefined &&

296+

existingNativeConfig.allow_destructive_actions !== allowDestructiveActions

297+

) {

298+

return true;

299+

}

300+

const plugins = nativeConfig.plugins;

301+

if (!isRecord(plugins)) {

302+

return false;

303+

}

304+

return Object.entries(plugins).some(([configKey, plugin]) => {

305+

if (!isRecord(plugin)) {

306+

return existingNativeConfig[configKey] !== undefined;

307+

}

308+

return hasExistingCodexPluginEntry(

309+

readExistingCodexPluginEntries(config),

310+

configKey,

311+

typeof plugin.pluginName === "string" ? plugin.pluginName : configKey,

312+

);

313+

});

235314

}

236315237316

function buildPluginConfigItem(

238317

ctx: MigrationProviderContext,

239318

pluginItems: readonly MigrationItem[],

240319

): MigrationItem | undefined {

241320

const entries = pluginItems

321+

.filter((item) => item.status === "planned")

242322

.map((item) => readCodexPluginMigrationConfigEntry(item, true))

243323

.filter((entry): entry is CodexPluginMigrationConfigEntry => entry !== undefined);

244324

if (entries.length === 0) {

@@ -280,7 +360,7 @@ export async function buildCodexMigrationPlan(

280360

overwrite: ctx.overwrite,

281361

})),

282362

);

283-

const pluginItems = buildPluginItems(source.plugins);

363+

const pluginItems = buildPluginItems(ctx, source.plugins);

284364

items.push(...pluginItems);

285365

const pluginConfigItem = buildPluginConfigItem(ctx, pluginItems);

286366

if (pluginConfigItem) {

@@ -303,7 +383,7 @@ export async function buildCodexMigrationPlan(

303383

const warnings = [

304384

...(items.some((item) => item.status === "conflict")

305385

? [

306-

"Conflicts were found. Re-run with --overwrite to replace conflicting skill targets after item-level backups.",

386+

"Conflicts were found. Re-run with --overwrite to replace conflicting migration targets after item-level backups.",

307387

]

308388

: []),

309389

...(source.plugins.length > 0