-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.58 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@tencentdb-agent-memory/memory-tencentdb",
"version": "0.3.6",
"description": "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)",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"migrate-sqlite-to-tcvdb": "./bin/migrate-sqlite-to-tcvdb.mjs",
"export-tencent-vdb": "./bin/export-tencent-vdb.mjs",
"read-local-memory": "./bin/read-local-memory.mjs"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "npm run build:plugin && npm run build:scripts",
"build:plugin": "tsdown",
"build:scripts": "npm run build:migrate-sqlite-to-vdb && npm run build:export-tencent-vdb && npm run build:read-local-memory",
"prepack": "npm run build",
"build:migrate-sqlite-to-vdb": "tsc -p scripts/migrate-sqlite-to-tcvdb/tsconfig.json --noEmitOnError false",
"migrate-sqlite-to-tcvdb": "node ./bin/migrate-sqlite-to-tcvdb.mjs",
"build:export-tencent-vdb": "tsc --project scripts/export-tencent-vdb/tsconfig.json",
"export-tencent-vdb": "node ./bin/export-tencent-vdb.mjs",
"build:read-local-memory": "tsc --project scripts/read-local-memory/tsconfig.json",
"read-local-memory": "node ./bin/read-local-memory.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "bash scripts/openclaw-after-tool-call-messages.patch.sh 2>/dev/null || true"
},
"files": [
"dist/",
"bin/",
"index.ts",
"scripts/migrate-sqlite-to-tcvdb/dist/",
"scripts/export-tencent-vdb/dist/",
"scripts/read-local-memory/dist/",
"scripts/memory-tencentdb-ctl.sh",
"scripts/install_hermes_memory_tencentdb.sh",
"scripts/README.memory-tencentdb-ctl.md",
"src",
"scripts/openclaw-after-tool-call-messages.patch.sh",
"scripts/setup-offload.sh",
"hermes-plugin/",
"openclaw.plugin.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"!src/**/*.test.ts",
"!src/**/*.spec.ts",
"!src/**/__tests__/"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"memory",
"ai-memory",
"long-term-memory",
"vector-search",
"sqlite-vec",
"llm",
"conversation",
"persona",
"scene-extraction",
"embedding"
],
"author": "TencentDB Agent Memory Team",
"license": "MIT",
"engines": {
"node": ">=22.16.0"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.53",
"@node-rs/jieba": "^2.0.1",
"@tencentdb-agent-memory/tcvdb-text": "^0.1.1",
"ai": "^6.0.164",
"js-tiktoken": "^1.0.18",
"json5": "^2.2.3",
"sqlite-vec": "0.1.7-alpha.2",
"tsx": "^4.21.0",
"undici": "^8.1.0",
"yaml": "^2.8.3",
"zod": "^4.4.3"
},
"optionalDependencies": {
"opik": "^1.0.0"
},
"peerDependencies": {
"node-llama-cpp": "^3.16.2",
"openclaw": ">=2026.3.7"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
},
"node-llama-cpp": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.13",
"minGatewayVersion": ">=2026.3.13"
},
"build": {
"openclawVersion": "2026.3.13",
"pluginSdkVersion": "2026.3.13"
},
"bundle": {
"stageRuntimeDependencies": true
}
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"tsdown": "^0.21.10",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}