mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 04:50:44 +00:00
* feat: add migration providers * feat: offer Hermes migration during onboarding * feat(hermes): map imported config surfaces * feat(onboard): require fresh migration imports * docs(cli): clarify Hermes import coverage * chore(migrations): rename Hermes importer package * chore(migrations): rewire Hermes importer id * fix(migrations): redact migration JSON details * fix(hermes): use provider runtime for config imports * test(hermes): cover missing source planning --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
12 lines
392 B
TypeScript
12 lines
392 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { buildHermesMigrationProvider } from "./provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "migrate-hermes",
|
|
name: "Hermes Migration",
|
|
description: "Imports Hermes state into OpenClaw.",
|
|
register(api) {
|
|
api.registerMigrationProvider(buildHermesMigrationProvider({ runtime: api.runtime }));
|
|
},
|
|
});
|