mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
// Memory Lancedb plugin module implements cli metadata behavior.
|
|
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,
|
|
},
|
|
],
|
|
});
|
|
},
|
|
});
|