Files
openclaw/extensions/memory-lancedb/cli-metadata.ts
Josh Avant eb6dd2c65d Fix memory plugin CLI help dispatch (#83841)
* fix cli help for active memory plugin

* docs add changelog for memory cli help

* test fix root help mock type
2026-05-18 20:35:55 -05:00

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,
},
],
});
},
});