mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-23 17:57:25 +00:00
* fix cli help for active memory plugin * docs add changelog for memory cli help * test fix root help mock type
19 lines
436 B
TypeScript
19 lines
436 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
|
|
|
export default definePluginEntry({
|
|
id: "memory-lancedb",
|
|
name: "Memory LanceDB",
|
|
description: "LanceDB-backed memory provider",
|
|
register(api) {
|
|
api.registerCli(() => {}, {
|
|
descriptors: [
|
|
{
|
|
name: "ltm",
|
|
description: "Inspect and query LanceDB-backed memory",
|
|
hasSubcommands: true,
|
|
},
|
|
],
|
|
});
|
|
},
|
|
});
|