UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

120 lines (119 loc) 7.77 kB
import { s as normalizeOptionalTrimmedStringList } from "./string-normalization-DsCfAx8q.js"; import { r as defaultRuntime } from "./runtime-CF2WjnNZ.js"; import { r as theme } from "./theme-vjDs9tao.js"; import { n as runCommandWithRuntime } from "./cli-utils-D1DAWB8d.js"; import { t as formatHelpExamples } from "./help-format-CAcwboTs.js"; import { i as migratePlanCommand, n as migrateDefaultCommand, r as migrateListCommand, t as migrateApplyCommand } from "./migrate-WoPGmhEQ.js"; //#region src/cli/program/register.migrate.ts function collectMigrationSkill(value, previous) { return [...previous ?? [], value]; } function collectMigrationPlugin(value, previous) { return [...previous ?? [], value]; } function collectMigrationItem(value, previous) { return [...previous ?? [], value]; } function readMigrationItems(value, command) { const selected = Array.isArray(value) ? value : command?.parent?.opts().item; return normalizeOptionalTrimmedStringList(selected); } function addMigrationSkillOption(command) { return command.option("--skill <name>", "Select one skill to migrate by name or item id; repeat for multiple skills", collectMigrationSkill); } function addMigrationPluginOption(command) { return command.option("--plugin <name>", "Select one Codex plugin to migrate by name or item id; repeat for multiple plugins", collectMigrationPlugin); } function addVerifyPluginAppsOption(command) { return command.option("--verify-plugin-apps", "Codex only: verify source plugin app accessibility with app/installed before planning native plugin activation", false); } function addMigrationItemOption(command) { return command.option("--item <id>", "Select one exact migration item id; repeat for multiple items", collectMigrationItem); } function addMigrationOptions(command) { return addVerifyPluginAppsOption(addMigrationItemOption(addMigrationPluginOption(addMigrationSkillOption(command.option("--from <path>", "Source directory to migrate from").option("--agent <id>", "Target agent (default: configured default agent)").option("--include-secrets", "Import supported credentials and secrets").option("--no-auth-credentials", "Skip auth credential migration").option("--overwrite", "Overwrite conflicting target files after item-level backups", false).option("--json", "Output JSON", false))))); } function readVerifyPluginApps(value) { return value === true; } function readMigrationTargetAgentId(value, command) { if (typeof value === "string") return value; const parentValue = command.parent?.opts().agent; return typeof parentValue === "string" ? parentValue : void 0; } /** Register migration commands and shared provider/item selection flags. */ function registerMigrateCommand(program) { const migrate = addVerifyPluginAppsOption(program.command("migrate").description("Import state from another agent system").argument("[provider]", "Migration provider id, for example hermes").option("--from <path>", "Source directory to migrate from").option("--agent <id>", "Target agent (default: configured default agent)").option("--include-secrets", "Import supported credentials and secrets").option("--no-auth-credentials", "Skip auth credential migration").option("--overwrite", "Overwrite conflicting target files after item-level backups", false).option("--dry-run", "Preview only; do not apply changes", false).option("--yes", "Apply without prompting after preview", false).option("--skill <name>", "Select one skill to migrate by name or item id; repeat for multiple skills", collectMigrationSkill).option("--plugin <name>", "Select one Codex plugin to migrate by name or item id; repeat for multiple plugins", collectMigrationPlugin).option("--item <id>", "Select one exact migration item id; repeat for multiple items", collectMigrationItem).option("--backup-output <path>", "Pre-migration backup archive path or directory").option("--no-backup", "Skip the pre-migration OpenClaw backup").option("--force", "Allow dangerous options such as --no-backup", false).option("--json", "Output JSON", false)).addHelpText("after", () => `\n${theme.heading("Examples:")}\n${formatHelpExamples([ ["openclaw migrate list", "Show available migration providers."], ["openclaw migrate hermes", "Preview Hermes migration, then prompt before applying."], ["openclaw migrate hermes --dry-run", "Preview Hermes migration only."], ["openclaw migrate apply hermes --yes", "Apply Hermes migration non-interactively after writing a verified backup."], ["openclaw migrate hermes --no-auth-credentials", "Preview and apply Hermes migration while skipping auth credential import."] ])}`).action(async (provider, opts) => { await runCommandWithRuntime(defaultRuntime, async () => { await migrateDefaultCommand(defaultRuntime, { provider, source: opts.from, targetAgentId: opts.agent, includeSecrets: opts.includeSecrets === true ? true : void 0, authCredentials: opts.authCredentials, overwrite: Boolean(opts.overwrite), skills: normalizeOptionalTrimmedStringList(opts.skill), plugins: normalizeOptionalTrimmedStringList(opts.plugin), itemIds: readMigrationItems(opts.item), verifyPluginApps: readVerifyPluginApps(opts.verifyPluginApps), dryRun: Boolean(opts.dryRun), yes: Boolean(opts.yes), backupOutput: opts.backupOutput, noBackup: opts.backup === false, force: Boolean(opts.force), json: Boolean(opts.json) }); }); }); migrate.command("list").description("List migration providers").option("--json", "Output JSON", false).action(async (opts) => { await runCommandWithRuntime(defaultRuntime, async () => { await migrateListCommand(defaultRuntime, { json: Boolean(opts.json) }); }); }); addMigrationOptions(migrate.command("plan <provider>").description("Preview a migration without changing OpenClaw state")).action(async (provider, opts, command) => { await runCommandWithRuntime(defaultRuntime, async () => { await migratePlanCommand(defaultRuntime, { provider, source: opts.from, targetAgentId: readMigrationTargetAgentId(opts.agent, command), includeSecrets: opts.includeSecrets === true ? true : void 0, authCredentials: opts.authCredentials, overwrite: Boolean(opts.overwrite), skills: normalizeOptionalTrimmedStringList(opts.skill), plugins: normalizeOptionalTrimmedStringList(opts.plugin), itemIds: readMigrationItems(opts.item, command), verifyPluginApps: readVerifyPluginApps(opts.verifyPluginApps), json: Boolean(opts.json) }); }); }); addMigrationOptions(migrate.command("apply <provider>").description("Apply a migration after a verified backup")).option("--yes", "Apply without prompting", false).option("--backup-output <path>", "Pre-migration backup archive path or directory").option("--no-backup", "Skip the pre-migration OpenClaw backup").option("--force", "Allow dangerous options such as --no-backup", false).action(async (provider, opts, command) => { await runCommandWithRuntime(defaultRuntime, async () => { await migrateApplyCommand(defaultRuntime, { provider, source: opts.from, targetAgentId: readMigrationTargetAgentId(opts.agent, command), includeSecrets: opts.includeSecrets === true ? true : void 0, authCredentials: opts.authCredentials, overwrite: Boolean(opts.overwrite), skills: normalizeOptionalTrimmedStringList(opts.skill), plugins: normalizeOptionalTrimmedStringList(opts.plugin), itemIds: readMigrationItems(opts.item, command), verifyPluginApps: readVerifyPluginApps(opts.verifyPluginApps), yes: Boolean(opts.yes), backupOutput: opts.backupOutput, noBackup: opts.backup === false, force: Boolean(opts.force), json: Boolean(opts.json) }); }); }); } //#endregion export { registerMigrateCommand };