UNPKG

@tencentdb-agent-memory/memory-tencentdb

Version:

Four-layer local memory system plugin for OpenClaw — auto-captures, structures, and profiles conversational knowledge using local LLM + SQLite vector search (L0→L1→L2→L3 pipeline)

13 lines (8 loc) 460 B
#!/usr/bin/env node // Thin wrapper: runs the pre-compiled migration CLI entry. // Build first: npm run build:migrate-sqlite-to-vdb (or pnpm build:migrate-sqlite-to-vdb) import path from "node:path"; import { fileURLToPath } from "node:url"; const thisDir = path.dirname(fileURLToPath(import.meta.url)); const entryScript = path.resolve(thisDir, "../scripts/migrate-sqlite-to-tcvdb/dist/scripts/migrate-sqlite-to-tcvdb/cli-entry.js"); import(entryScript);