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

推荐订阅源

量子位
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
I
InfoQ
V
Visual Studio Blog
罗磊的独立博客
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
Jina AI
Jina AI
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
The Cloudflare Blog
小众软件
小众软件
雷峰网
雷峰网
V
V2EX
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow 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: improve Codex migration selector enter · openclaw/op...
kevinslin · 2026-05-13 · via Recent Commits to openclaw:main

@@ -1,4 +1,6 @@

11

import fs from "node:fs/promises";

2+

import { withProgress } from "../../cli/progress.js";

3+

import type { ProgressReporter } from "../../cli/progress.js";

24

import { resolveStateDir } from "../../config/paths.js";

35

import type { MigrationApplyResult, MigrationProviderPlugin } from "../../plugins/types.js";

46

import type { RuntimeEnv } from "../../runtime.js";

@@ -49,45 +51,74 @@ export async function runMigrationApply(params: {

4951

providerId: string;

5052

provider: MigrationProviderPlugin;

5153

}): Promise<MigrationApplyResult> {

52-

const preflightPlan =

53-

params.opts.preflightPlan ??

54-

(await params.provider.plan(

55-

buildMigrationContext({

56-

source: params.opts.source,

57-

includeSecrets: params.opts.includeSecrets,

58-

overwrite: params.opts.overwrite,

59-

providerOptions: buildMigrationProviderOptions(params.opts),

60-

runtime: params.runtime,

61-

json: params.opts.json,

62-

}),

63-

));

64-

const selectedPlan = applyMigrationPluginSelection(

65-

applyMigrationSkillSelection(preflightPlan, params.opts.skills),

66-

params.opts.plugins,

67-

);

68-

assertConflictFreePlan(selectedPlan, params.providerId);

69-

const stateDir = resolveStateDir();

70-

const reportDir = buildMigrationReportDir(params.providerId, stateDir);

71-

const backupPath = params.opts.noBackup

72-

? undefined

73-

: await createPreMigrationBackup({ output: params.opts.backupOutput });

74-

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

75-

const ctx = buildMigrationContext({

76-

source: params.opts.source,

77-

includeSecrets: params.opts.includeSecrets,

78-

overwrite: params.opts.overwrite,

79-

providerOptions: buildMigrationProviderOptions(params.opts),

80-

runtime: params.runtime,

81-

backupPath,

82-

reportDir,

83-

json: params.opts.json,

84-

});

85-

const result = await params.provider.apply(ctx, selectedPlan);

86-

const withBackup = {

87-

...result,

88-

backupPath: result.backupPath ?? backupPath,

89-

reportDir: result.reportDir ?? reportDir,

54+

const applyMigration = async (progress?: ProgressReporter) => {

55+

const total = (params.opts.preflightPlan ? 0 : 1) + (params.opts.noBackup ? 0 : 1) + 1;

56+

let completed = 0;

57+

const tick = () => {

58+

completed += 1;

59+

progress?.setPercent((completed / total) * 100);

60+

};

61+

if (!params.opts.preflightPlan) {

62+

progress?.setLabel("Preparing migration plan…");

63+

}

64+

const preflightPlan =

65+

params.opts.preflightPlan ??

66+

(await params.provider.plan(

67+

buildMigrationContext({

68+

source: params.opts.source,

69+

includeSecrets: params.opts.includeSecrets,

70+

overwrite: params.opts.overwrite,

71+

providerOptions: buildMigrationProviderOptions(params.opts),

72+

runtime: params.runtime,

73+

json: params.opts.json,

74+

}),

75+

));

76+

if (!params.opts.preflightPlan) {

77+

tick();

78+

}

79+

const selectedPlan = applyMigrationPluginSelection(

80+

applyMigrationSkillSelection(preflightPlan, params.opts.skills),

81+

params.opts.plugins,

82+

);

83+

assertConflictFreePlan(selectedPlan, params.providerId);

84+

const stateDir = resolveStateDir();

85+

const reportDir = buildMigrationReportDir(params.providerId, stateDir);

86+

if (!params.opts.noBackup) {

87+

progress?.setLabel("Preparing migration backup…");

88+

}

89+

const backupPath = params.opts.noBackup

90+

? undefined

91+

: await createPreMigrationBackup({ output: params.opts.backupOutput });

92+

if (!params.opts.noBackup) {

93+

tick();

94+

}

95+

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

96+

const ctx = buildMigrationContext({

97+

source: params.opts.source,

98+

includeSecrets: params.opts.includeSecrets,

99+

overwrite: params.opts.overwrite,

100+

providerOptions: buildMigrationProviderOptions(params.opts),

101+

runtime: params.runtime,

102+

backupPath,

103+

reportDir,

104+

json: params.opts.json,

105+

});

106+

progress?.setLabel("Applying migration…");

107+

const result = await params.provider.apply(ctx, selectedPlan);

108+

tick();

109+

const withBackup = {

110+

...result,

111+

backupPath: result.backupPath ?? backupPath,

112+

reportDir: result.reportDir ?? reportDir,

113+

};

114+

return withBackup;

90115

};

116+

const withBackup = params.opts.json

117+

? await applyMigration()

118+

: await withProgress(

119+

{ label: `Applying ${params.providerId} migration…` },

120+

async (progress) => await applyMigration(progress),

121+

);

91122

writeApplyResult(params.runtime, params.opts, withBackup);

92123

assertApplySucceeded(withBackup);

93124

return withBackup;