Files
Vincent Koc 600df95c8c feat(migrate): add Claude importer
Add a bundled Claude migration provider for Claude Code and Claude Desktop imports.\n\nIncludes source discovery, preview/apply behavior for instructions, MCP servers, skills and command prompts, archive/manual handling for unsafe Claude state, docs, labeler, and tests.
2026-04-27 02:35:44 -07:00

12 lines
392 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { buildClaudeMigrationProvider } from "./provider.js";
export default definePluginEntry({
id: "migrate-claude",
name: "Claude Migration",
description: "Imports Claude state into OpenClaw.",
register(api) {
api.registerMigrationProvider(buildClaudeMigrationProvider({ runtime: api.runtime }));
},
});