mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:20:43 +00:00
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.
12 lines
392 B
TypeScript
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 }));
|
|
},
|
|
});
|