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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
I
InfoQ
宝玉的分享
宝玉的分享
G
Google Developers Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
B
Blog RSS Feed
博客园 - 聂微东
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏

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
docs: document message migrate helpers · openclaw/opencla...
steipete · 2026-06-05 · via Recent Commits to openclaw:main

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

1+

/** Selection helpers for filtering migration plan items before apply. */

12

import path from "node:path";

23

import { isRecord } from "@openclaw/normalization-core/record-coerce";

34

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

@@ -6,6 +7,7 @@ import { markMigrationItemSkipped, summarizeMigrationItems } from "../../plugin-

67

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

78

import { MIGRATION_CONFLICT_REASON_PHRASES } from "./output.js";

8910+

// Public selection tokens and skip reasons shared with prompt tests and apply filtering.

911

export const MIGRATION_SKILL_NOT_SELECTED_REASON = "not selected for migration";

1012

export const MIGRATION_PLUGIN_NOT_SELECTED_REASON = "not selected for migration";

1113

export const MIGRATION_SELECTION_ACCEPT = "__openclaw_migrate_accept_recommended__";

@@ -16,7 +18,9 @@ export const MIGRATION_SKILL_SELECTION_TOGGLE_ALL_ON = MIGRATION_SELECTION_TOGGL

1618

export const MIGRATION_SKILL_SELECTION_TOGGLE_ALL_OFF = MIGRATION_SELECTION_TOGGLE_ALL_OFF;

17191820

type InteractiveMigrationSelection = { action: "select"; selectedItemIds: Set<string> };

21+

/** Interactive skill selection result consumed by the apply flow. */

1922

export type InteractiveMigrationSkillSelection = InteractiveMigrationSelection;

23+

/** Interactive plugin selection result consumed by the apply flow. */

2024

export type InteractiveMigrationPluginSelection = InteractiveMigrationSelection;

21252226

function normalizeSelectionRef(value: string): string {

@@ -173,6 +177,7 @@ function resolveSelectedPluginItemIds(

173177

});

174178

}

175179180+

/** Returns skill copy items that can still be selected or deselected. */

176181

export function getSelectableMigrationSkillItems(plan: MigrationPlan): MigrationItem[] {

177182

return plan.items.filter(

178183

(item) =>

@@ -182,6 +187,7 @@ export function getSelectableMigrationSkillItems(plan: MigrationPlan): Migration

182187

);

183188

}

184189190+

/** Returns plugin install items that can still be selected or deselected. */

185191

export function getSelectableMigrationPluginItems(plan: MigrationPlan): MigrationItem[] {

186192

// Only source-installed curated Codex plugins become selectable install items.

187193

// Cached/manual-review plugin bundles are emitted as manual items, the aggregate

@@ -196,28 +202,34 @@ export function getSelectableMigrationPluginItems(plan: MigrationPlan): Migratio

196202

);

197203

}

198204205+

/** Returns the stable checkbox value for a skill migration item. */

199206

export function getMigrationSkillSelectionValue(item: MigrationItem): string {

200207

return item.id;

201208

}

202209210+

/** Returns the stable checkbox value for a plugin migration item. */

203211

export function getMigrationPluginSelectionValue(item: MigrationItem): string {

204212

return item.id;

205213

}

206214215+

/** Formats the visible label for a plugin migration checkbox. */

207216

export function formatMigrationPluginSelectionLabel(item: MigrationItem): string {

208217

return readMigrationPluginName(item) ?? item.id.replace(/^plugin:/u, "");

209218

}

210219220+

/** Defaults skill selection to planned items only. */

211221

export function getDefaultMigrationSkillSelectionValues(items: readonly MigrationItem[]): string[] {

212222

return items.filter((item) => item.status === "planned").map(getMigrationSkillSelectionValue);

213223

}

214224225+

/** Defaults plugin selection to planned items only. */

215226

export function getDefaultMigrationPluginSelectionValues(

216227

items: readonly MigrationItem[],

217228

): string[] {

218229

return items.filter((item) => item.status === "planned").map(getMigrationPluginSelectionValue);

219230

}

220231232+

/** Formats the visible label for a skill migration checkbox. */

221233

export function formatMigrationSkillSelectionLabel(item: MigrationItem): string {

222234

return readMigrationSkillName(item) ?? item.id.replace(/^skill:/u, "");

223235

}

@@ -229,6 +241,7 @@ function humanizeMigrationConflictReason(reason: string | undefined): string {

229241

return MIGRATION_CONFLICT_REASON_PHRASES[reason] ?? reason;

230242

}

231243244+

/** Formats conflict helper text for a skill migration checkbox. */

232245

export function formatMigrationSkillSelectionHint(item: MigrationItem): string | undefined {

233246

if (item.status !== "conflict") {

234247

return undefined;

@@ -238,6 +251,7 @@ export function formatMigrationSkillSelectionHint(item: MigrationItem): string |

238251

return sourceLabel ? `${sourceLabel} ${reason}` : reason;

239252

}

240253254+

/** Formats conflict helper text for a plugin migration checkbox. */

241255

export function formatMigrationPluginSelectionHint(item: MigrationItem): string | undefined {

242256

if (item.status !== "conflict") {

243257

return undefined;

@@ -247,6 +261,7 @@ export function formatMigrationPluginSelectionHint(item: MigrationItem): string

247261

return marketplace ? `${marketplace} plugin ${reason}` : reason;

248262

}

249263264+

/** Marks unselected selectable skill items as skipped and recomputes plan summary. */

250265

export function applyMigrationSelectedSkillItemIds(

251266

plan: MigrationPlan,

252267

selectedItemIds: ReadonlySet<string>,

@@ -265,6 +280,7 @@ export function applyMigrationSelectedSkillItemIds(

265280

};

266281

}

267282283+

/** Applies skill refs passed by CLI flags to a migration plan. */

268284

export function applyMigrationSkillSelection(

269285

plan: MigrationPlan,

270286

selectedSkillRefs: readonly string[] | undefined,

@@ -277,6 +293,7 @@ export function applyMigrationSkillSelection(

277293

return applyMigrationSelectedSkillItemIds(plan, selectedIds);

278294

}

279295296+

/** Applies plugin refs passed by CLI flags to a migration plan. */

280297

export function applyMigrationPluginSelection(

281298

plan: MigrationPlan,

282299

selectedPluginRefs: readonly string[] | undefined,

@@ -289,6 +306,7 @@ export function applyMigrationPluginSelection(

289306

return applyMigrationSelectedPluginItemIds(plan, selectedIds);

290307

}

291308309+

/** Marks unselected plugin items skipped and filters matching Codex plugin config writes. */

292310

export function applyMigrationSelectedPluginItemIds(

293311

plan: MigrationPlan,

294312

selectedItemIds: ReadonlySet<string>,

@@ -424,6 +442,7 @@ function resolveMigrationSelectionBulkToggleValues(

424442

return undefined;

425443

}

426444445+

/** Resolves checkbox values into selected skill migration item ids. */

427446

export function resolveInteractiveMigrationSkillSelection(

428447

items: readonly MigrationItem[],

429448

selectedValues: readonly string[],

@@ -435,6 +454,7 @@ export function resolveInteractiveMigrationSkillSelection(

435454

);

436455

}

437456457+

/** Resolves checkbox values into selected plugin migration item ids. */

438458

export function resolveInteractiveMigrationPluginSelection(

439459

items: readonly MigrationItem[],

440460

selectedValues: readonly string[],

@@ -446,6 +466,7 @@ export function resolveInteractiveMigrationPluginSelection(

446466

);

447467

}

448468469+

/** Reconciles all/none checkbox toggles for the skill-selection prompt. */

449470

export function reconcileInteractiveMigrationSkillToggleValues(

450471

selectedValues: readonly string[],

451472

activatedValue: string | undefined,

@@ -465,6 +486,7 @@ export function reconcileInteractiveMigrationSkillToggleValues(

465486

);

466487

}

467488489+

/** Reconciles Enter-key selection behavior for interactive migration prompts. */

468490

export function reconcileInteractiveMigrationEnterValues(

469491

selectedValues: readonly string[],

470492

activatedValue: string | undefined,

@@ -485,6 +507,7 @@ export function reconcileInteractiveMigrationEnterValues(

485507

return [...selectedValues];

486508

}

487509510+

/** Reconciles keyboard shortcuts for all/none migration prompt selections. */

488511

export function reconcileInteractiveMigrationShortcutValues(

489512

previousValues: readonly string[],

490513

selectedValues: readonly string[],