refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,4 +1,5 @@
import { Type } from "@sinclair/typebox";
import fs from "node:fs";
import { homedir } from "node:os";
import { join } from "node:path";
@@ -17,7 +18,30 @@ export const MEMORY_CATEGORIES = ["preference", "fact", "decision", "entity", "o
export type MemoryCategory = (typeof MEMORY_CATEGORIES)[number];
const DEFAULT_MODEL = "text-embedding-3-small";
const DEFAULT_DB_PATH = join(homedir(), ".clawdbot", "memory", "lancedb");
const LEGACY_STATE_DIRS: string[] = [];
function resolveDefaultDbPath(): string {
const home = homedir();
const preferred = join(home, ".openclaw", "memory", "lancedb");
try {
if (fs.existsSync(preferred)) return preferred;
} catch {
// best-effort
}
for (const legacy of LEGACY_STATE_DIRS) {
const candidate = join(home, legacy, "memory", "lancedb");
try {
if (fs.existsSync(candidate)) return candidate;
} catch {
// best-effort
}
}
return preferred;
}
const DEFAULT_DB_PATH = resolveDefaultDbPath();
const EMBEDDING_DIMENSIONS: Record<string, number> = {
"text-embedding-3-small": 1536,
@@ -99,7 +123,7 @@ export const memoryConfigSchema = {
},
dbPath: {
label: "Database Path",
placeholder: "~/.clawdbot/memory/lancedb",
placeholder: "~/.openclaw/memory/lancedb",
advanced: true,
},
autoCapture: {

View File

@@ -16,7 +16,7 @@ import os from "node:os";
const OPENAI_API_KEY = process.env.OPENAI_API_KEY ?? "test-key";
const HAS_OPENAI_KEY = Boolean(process.env.OPENAI_API_KEY);
const liveEnabled = HAS_OPENAI_KEY && process.env.CLAWDBOT_LIVE_TEST === "1";
const liveEnabled = HAS_OPENAI_KEY && process.env.OPENCLAW_LIVE_TEST === "1";
const describeLive = liveEnabled ? describe : describe.skip;
describe("memory plugin e2e", () => {
@@ -24,7 +24,7 @@ describe("memory plugin e2e", () => {
let dbPath: string;
beforeEach(async () => {
tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-memory-test-"));
tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-memory-test-"));
dbPath = path.join(tmpDir, "lancedb");
});
@@ -165,7 +165,7 @@ describeLive("memory plugin live tests", () => {
let dbPath: string;
beforeEach(async () => {
tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "moltbot-memory-live-"));
tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-memory-live-"));
dbPath = path.join(tmpDir, "lancedb");
});

View File

@@ -1,5 +1,5 @@
/**
* Moltbot Memory (LanceDB) Plugin
* OpenClaw Memory (LanceDB) Plugin
*
* Long-term memory with vector search for AI conversations.
* Uses LanceDB for storage and OpenAI for embeddings.
@@ -10,8 +10,8 @@ import { Type } from "@sinclair/typebox";
import * as lancedb from "@lancedb/lancedb";
import OpenAI from "openai";
import { randomUUID } from "node:crypto";
import type { MoltbotPluginApi } from "clawdbot/plugin-sdk";
import { stringEnum } from "clawdbot/plugin-sdk";
import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
import { stringEnum } from "openclaw/plugin-sdk";
import {
MEMORY_CATEGORIES,
@@ -220,7 +220,7 @@ const memoryPlugin = {
kind: "memory" as const,
configSchema: memoryConfigSchema,
register(api: MoltbotPluginApi) {
register(api: OpenClawPluginApi) {
const cfg = memoryConfigSchema.parse(api.pluginConfig);
const resolvedDbPath = api.resolvePath(cfg.dbPath!);
const vectorDim = vectorDimsForModel(cfg.embedding.model ?? "text-embedding-3-small");

View File

@@ -15,7 +15,7 @@
},
"dbPath": {
"label": "Database Path",
"placeholder": "~/.clawdbot/memory/lancedb",
"placeholder": "~/.openclaw/memory/lancedb",
"advanced": true
},
"autoCapture": {

View File

@@ -1,14 +1,14 @@
{
"name": "@moltbot/memory-lancedb",
"version": "2026.1.29",
"name": "@openclaw/memory-lancedb",
"version": "2026.1.27-beta.1",
"type": "module",
"description": "Moltbot LanceDB-backed long-term memory plugin with auto-recall/capture",
"description": "OpenClaw LanceDB-backed long-term memory plugin with auto-recall/capture",
"dependencies": {
"@lancedb/lancedb": "^0.23.0",
"@sinclair/typebox": "0.34.47",
"openai": "^6.16.0"
},
"moltbot": {
"openclaw": {
"extensions": [
"./index.ts"
]