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

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure 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
ux(codex-migrate): polish preview/result output · opencla...
sjf · 2026-05-14 · via Recent Commits to openclaw:main

@@ -1,76 +1,202 @@

1+

import { log } from "@clack/prompts";

12

import { redactMigrationPlan } from "../../plugin-sdk/migration.js";

23

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

34

import { writeRuntimeJson } from "../../runtime.js";

45

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

56

import { theme } from "../../terminal/theme.js";

6-

import {

7-

formatMigrationPluginSelectionLabel,

8-

getSelectableMigrationPluginItems,

9-

} from "./selection.js";

107

import type { MigrateApplyOptions } from "./types.js";

118129

function formatCount(value: number, label: string): string {

1310

return `${value} ${label}${value === 1 ? "" : "s"}`;

1411

}

151216-

export function formatMigrationPlan(plan: MigrationPlan): string[] {

17-

const lines = [

18-

`${theme.heading("Migration plan:")} ${plan.providerId}`,

19-

`Source: ${plan.source}`,

20-

];

13+

function formatPlanHeader(plan: MigrationPlan, heading: string): string[] {

14+

const lines = [`${theme.heading(heading)} ${plan.providerId}`, `Source: ${plan.source}`];

2115

if (plan.target) {

2216

lines.push(`Target: ${plan.target}`);

2317

}

18+

const visible = plan.items.filter((item) => !HIDDEN_KINDS.has(item.kind));

19+

const visibleConflicts = visible.filter((item) => item.status === "conflict").length;

20+

const visibleSensitive = visible.filter((item) => item.sensitive === true).length;

2421

lines.push(

2522

[

26-

formatCount(plan.summary.total, "item"),

27-

formatCount(plan.summary.conflicts, "conflict"),

28-

formatCount(plan.summary.sensitive, "sensitive item"),

23+

formatCount(visible.length, "item"),

24+

formatCount(visibleConflicts, "conflict"),

25+

formatCount(visibleSensitive, "sensitive item"),

2926

].join(", "),

3027

);

31-

if (plan.warnings && plan.warnings.length > 0) {

32-

lines.push("");

33-

lines.push(theme.warn("Warnings:"));

34-

for (const warning of plan.warnings) {

35-

lines.push(`- ${warning}`);

28+

return lines;

29+

}

30+31+

type ItemGroup = {

32+

kind: string;

33+

heading: string;

34+

};

35+36+

const ITEM_GROUPS: ItemGroup[] = [

37+

{ kind: "skill", heading: "Skills:" },

38+

{ kind: "plugin", heading: "Plugins:" },

39+

{ kind: "memory", heading: "Memory:" },

40+

{ kind: "secret", heading: "Secrets:" },

41+

{ kind: "archive", heading: "Archive:" },

42+

{ kind: "manual", heading: "Manual review:" },

43+

];

44+45+

const HIDDEN_KINDS = new Set(["config"]);

46+

const KNOWN_KINDS = new Set(ITEM_GROUPS.map((group) => group.kind));

47+48+

type FormatMode = "preview" | "result";

49+50+

function formatPlanItems(plan: MigrationPlan, mode: FormatMode): string[] {

51+

const lines: string[] = [];

52+

const buckets = new Map<string, MigrationItem[]>();

53+

const other: MigrationItem[] = [];

54+

for (const item of plan.items) {

55+

if (HIDDEN_KINDS.has(item.kind)) {

56+

continue;

57+

}

58+

if (KNOWN_KINDS.has(item.kind)) {

59+

const list = buckets.get(item.kind) ?? [];

60+

list.push(item);

61+

buckets.set(item.kind, list);

62+

} else {

63+

other.push(item);

3664

}

3765

}

38-

const visibleItems = plan.items.slice(0, 25);

39-

const visibleItemIds = new Set(visibleItems.map((item) => item.id));

40-

const pluginItems = getSelectableMigrationPluginItems(plan);

41-

const hasPluginHiddenByTruncation = pluginItems.some((item) => !visibleItemIds.has(item.id));

42-

if (plan.providerId === "codex" && hasPluginHiddenByTruncation) {

66+

for (const group of ITEM_GROUPS) {

67+

const items = buckets.get(group.kind);

68+

if (!items || items.length === 0) {

69+

continue;

70+

}

4371

lines.push("");

44-

lines.push(theme.heading("Native Codex plugins:"));

45-

for (const item of pluginItems) {

46-

lines.push(`- ${formatMigrationPluginSelectionLabel(item)}`);

72+

lines.push(theme.heading(group.heading));

73+

for (const item of items) {

74+

lines.push(formatMigrationItem(item, mode));

4775

}

4876

}

49-

if (visibleItems.length > 0) {

77+

if (other.length > 0) {

5078

lines.push("");

51-

lines.push(theme.heading("Items:"));

52-

for (const item of visibleItems) {

53-

lines.push(formatMigrationItem(item));

54-

}

55-

if (plan.items.length > visibleItems.length) {

56-

lines.push(`- ... ${plan.items.length - visibleItems.length} more`);

79+

lines.push(theme.heading("Other:"));

80+

for (const item of other) {

81+

lines.push(formatMigrationItem(item, mode));

5782

}

5883

}

84+

return lines;

85+

}

86+87+

function formatPlanWarnings(plan: MigrationPlan): string[] {

88+

if (!plan.warnings || plan.warnings.length === 0) {

89+

return [];

90+

}

91+

const lines = ["", theme.warn("Warnings:")];

92+

for (const warning of plan.warnings) {

93+

lines.push(`• ${warning}`);

94+

}

95+

return lines;

96+

}

97+98+

export function formatMigrationPreview(plan: MigrationPlan): string[] {

99+

return [

100+

...formatPlanHeader(plan, "Migration preview:"),

101+

...formatPlanItems(plan, "preview"),

102+

...formatPlanWarnings(plan),

103+

];

104+

}

105+106+

export function formatMigrationResult(plan: MigrationPlan): string[] {

107+

const lines = [...formatPlanHeader(plan, "Migration plan:"), ...formatPlanItems(plan, "result")];

59108

if (plan.nextSteps && plan.nextSteps.length > 0) {

60109

lines.push("");

61110

lines.push(theme.heading("Next:"));

62111

for (const step of plan.nextSteps) {

63-

lines.push(`- ${step}`);

112+

lines.push(` ${step}`);

64113

}

65114

}

66115

return lines;

67116

}

6811769-

function formatMigrationItem(item: MigrationItem): string {

70-

const target = item.target ? ` -> ${item.target}` : "";

71-

const message = item.message ? ` (${item.message})` : item.reason ? ` (${item.reason})` : "";

118+

function formatItemDisplayName(item: MigrationItem): string {

119+

const colonIndex = item.id.indexOf(":");

120+

const withoutPrefix = colonIndex >= 0 ? item.id.slice(colonIndex + 1) : item.id;

121+

return withoutPrefix.replace(/:\d+$/, "");

122+

}

123+124+

const REASON_CODE_MESSAGES: Record<string, string> = {

125+

plugin_missing: "Plugin not found in the Codex marketplace.",

126+

marketplace_missing: "Codex marketplace is unavailable.",

127+

disabled: "Plugin is disabled in Codex.",

128+

refresh_failed: "Failed to refresh the Codex plugin marketplace.",

129+

auth_required: "Plugin requires additional authentication.",

130+

already_active: "Plugin is already active in OpenClaw.",

131+

installed: "Plugin is already installed in OpenClaw.",

132+

plugin_install_failed: "Plugin installation failed.",

133+

codex_subscription_required: "Plugin requires an active Codex subscription.",

134+

"not selected for migration": "Skipped because it was not selected for migration.",

135+

};

136+137+

function humanizeReason(reason: string | undefined): string | undefined {

138+

if (!reason) {

139+

return undefined;

140+

}

141+

return REASON_CODE_MESSAGES[reason] ?? reason;

142+

}

143+144+

function formatItemMessage(item: MigrationItem, mode: FormatMode): string | undefined {

145+

if (mode === "preview") {

146+

if (item.kind === "skill" && item.action === "copy") {

147+

return "Copy Codex skill into OpenClaw";

148+

}

149+

if (item.kind === "plugin" && item.action === "install") {

150+

return "Install Codex plugin into OpenClaw";

151+

}

152+

return item.message ?? humanizeReason(item.reason);

153+

}

154+

if (

155+

(item.kind === "skill" && item.action === "copy") ||

156+

(item.kind === "plugin" && item.action === "install")

157+

) {

158+

if (item.status === "migrated") {

159+

return "Migrated";

160+

}

161+

if (item.status === "skipped") {

162+

return "Skipped";

163+

}

164+

if (item.status === "error" || item.status === "conflict") {

165+

return humanizeReason(item.reason) ?? item.message;

166+

}

167+

return undefined;

168+

}

169+

if (item.status === "error" || item.status === "conflict") {

170+

return humanizeReason(item.reason) ?? item.message;

171+

}

172+

return item.message ?? humanizeReason(item.reason);

173+

}

174+175+

const RESULT_STATUS_GLYPHS: Record<string, string> = {

176+

migrated: "✅",

177+

error: "❌",

178+

skipped: "⏭️ ",

179+

conflict: "⚠️ ",

180+

};

181+182+

function formatItemPrefix(item: MigrationItem, mode: FormatMode): string {

183+

if (mode === "result") {

184+

const glyph = RESULT_STATUS_GLYPHS[item.status];

185+

if (glyph) {

186+

return `${glyph} `;

187+

}

188+

return "• ";

189+

}

190+

return item.status === "planned" ? "• " : `• ${item.status}: `;

191+

}

192+193+

function formatMigrationItem(item: MigrationItem, mode: FormatMode): string {

194+

const name = formatItemDisplayName(item);

195+

const message = formatItemMessage(item, mode);

196+

const messageSuffix = message ? ` ${theme.muted(`(${message})`)}` : "";

72197

const sensitive = item.sensitive ? " [sensitive]" : "";

73-

return `- ${item.status}: ${item.kind}/${item.action} ${item.id}${target}${sensitive}${message}`;

198+

const prefix = formatItemPrefix(item, mode);

199+

return `${prefix}${name}${sensitive}${messageSuffix}`;

74200

}

7520176202

export function assertConflictFreePlan(plan: MigrationPlan, providerId: string): void {

@@ -90,7 +216,7 @@ export function writeApplyResult(

90216

writeRuntimeJson(runtime, redactMigrationPlan(result));

91217

return;

92218

}

93-

runtime.log(formatMigrationPlan(result).join("\n"));

219+

log.message(formatMigrationResult(result).join("\n"));

94220

if (result.backupPath) {

95221

runtime.log(`Backup: ${result.backupPath}`);

96222

} else if (!opts.noBackup) {