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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare 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: carry codex migration config through onboarding · op...
kevinslin · 2026-05-14 · via Recent Commits to openclaw:main

@@ -41,6 +41,7 @@ function makeContext(params: {

4141

workspaceDir: string;

4242

overwrite?: boolean;

4343

verifyPluginApps?: boolean;

44+

providerOptions?: MigrationProviderContext["providerOptions"];

4445

reportDir?: string;

4546

config?: MigrationProviderContext["config"];

4647

runtime?: MigrationProviderContext["runtime"];

@@ -59,7 +60,8 @@ function makeContext(params: {

5960

source: params.source,

6061

stateDir: params.stateDir,

6162

overwrite: params.overwrite,

62-

providerOptions: params.verifyPluginApps ? { verifyPluginApps: true } : undefined,

63+

providerOptions:

64+

params.providerOptions ?? (params.verifyPluginApps ? { verifyPluginApps: true } : undefined),

6365

reportDir: params.reportDir,

6466

logger,

6567

};

@@ -210,9 +212,6 @@ describe("buildCodexMigrationProvider", () => {

210212

status: "planned",

211213

});

212214

expect(plan.items.some((item) => item.id === "skill:system-skill")).toBe(false);

213-

expect((plan.warnings ?? []).some((warning) => warning.includes("cached plugin bundles"))).toBe(

214-

true,

215-

);

216215

});

217216218217

it("plans source-installed curated plugins without installing during dry-run", async () => {

@@ -377,7 +376,6 @@ describe("buildCodexMigrationProvider", () => {

377376

expect(plan.warnings).toEqual([

378377

"Codex source-installed openai-curated plugins are planned for native activation; cached plugin bundles remain manual-review only.",

379378

"Codex app-backed plugins were planned without source app accessibility verification. Re-run with --verify-plugin-apps to force a fresh source app/list check before planning native plugin activation.",

380-

"Codex cached plugin bundles remain manual-review only.",

381379

"Codex config and hook files are archive-only. They are preserved in the migration report, not loaded into OpenClaw automatically.",

382380

]);

383381

expect(appServerRequest.mock.calls.filter(([arg]) => arg.method === "app/list")).toHaveLength(

@@ -434,7 +432,6 @@ describe("buildCodexMigrationProvider", () => {

434432

},

435433

]);

436434

expect(plan.warnings).toEqual([

437-

"Codex cached plugin bundles remain manual-review only.",

438435

"Codex app-backed plugin migration requires the Codex app-server source account to be logged in with a ChatGPT subscription account. Log in to the Codex app with subscription auth; OpenClaw auth or API-key auth does not satisfy Codex app connector access.",

439436

"Codex config and hook files are archive-only. They are preserved in the migration report, not loaded into OpenClaw automatically.",

440437

]);

@@ -1079,6 +1076,93 @@ describe("buildCodexMigrationProvider", () => {

10791076

});

10801077

});

108110781079+

it("returns Codex plugin config patches without mutating config in return mode", async () => {

1080+

const fixture = await createCodexFixture();

1081+

const configState: MigrationProviderContext["config"] = {

1082+

plugins: {

1083+

entries: {

1084+

codex: {

1085+

enabled: true,

1086+

config: {

1087+

appServer: { sandbox: "workspace-write" },

1088+

},

1089+

},

1090+

},

1091+

},

1092+

agents: { defaults: { workspace: fixture.workspaceDir } },

1093+

} as MigrationProviderContext["config"];

1094+

appServerRequest.mockImplementation(async ({ method }: { method: string }) => {

1095+

if (method === "plugin/list") {

1096+

return pluginList([pluginSummary("google-calendar", { installed: true, enabled: true })]);

1097+

}

1098+

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

1099+

return pluginRead("google-calendar");

1100+

}

1101+

if (method === "plugin/install") {

1102+

return { authPolicy: "ON_USE", appsNeedingAuth: [] } satisfies v2.PluginInstallResponse;

1103+

}

1104+

if (method === "skills/list") {

1105+

return { data: [] } satisfies v2.SkillsListResponse;

1106+

}

1107+

if (method === "hooks/list") {

1108+

return { data: [] } satisfies v2.HooksListResponse;

1109+

}

1110+

if (method === "config/mcpServer/reload") {

1111+

return {};

1112+

}

1113+

if (method === "app/list") {

1114+

return appsList([]);

1115+

}

1116+

throw new Error(`unexpected request ${method}`);

1117+

});

1118+

const mutateConfigFile = vi.fn(async () => {

1119+

throw new Error("mutateConfigFile should not be called in return mode");

1120+

});

1121+

const provider = buildCodexMigrationProvider({

1122+

runtime: {

1123+

config: {

1124+

current: () => configState,

1125+

mutateConfigFile,

1126+

},

1127+

} as unknown as MigrationProviderContext["runtime"],

1128+

});

1129+1130+

const result = await provider.apply(

1131+

makeContext({

1132+

source: fixture.codexHome,

1133+

stateDir: fixture.stateDir,

1134+

workspaceDir: fixture.workspaceDir,

1135+

config: configState,

1136+

providerOptions: { configPatchMode: "return" },

1137+

}),

1138+

);

1139+1140+

expect(mutateConfigFile).not.toHaveBeenCalled();

1141+

expect(configState.plugins?.entries?.codex?.config?.codexPlugins).toBeUndefined();

1142+

const configItem = findItem(result.items, "config:codex-plugins");

1143+

expectRecordFields(configItem, { status: "migrated" });

1144+

const configDetails = configItem.details as Record<string, unknown>;

1145+

expectRecordFields(configDetails, {

1146+

path: ["plugins", "entries", "codex"],

1147+

});

1148+

expect(configDetails.value).toEqual({

1149+

enabled: true,

1150+

config: {

1151+

codexPlugins: {

1152+

enabled: true,

1153+

allow_destructive_actions: true,

1154+

plugins: {

1155+

"google-calendar": {

1156+

enabled: true,

1157+

marketplaceName: CODEX_PLUGINS_MARKETPLACE_NAME,

1158+

pluginName: "google-calendar",

1159+

},

1160+

},

1161+

},

1162+

},

1163+

});

1164+

});

1165+10821166

it("merges migrated plugin config with existing Codex plugins when entries do not conflict", async () => {

10831167

const fixture = await createCodexFixture();

10841168

const sourceKey = sourceAppCacheKey(fixture);