Files
TencentDB-Agent-Memory/package.json
T

62 lines
1.3 KiB
JSON
Raw Normal View History

2026-04-09 18:23:46 +08:00
{
"name": "@tencentdb-agent-memory/memory-tencentdb",
"version": "0.1.1",
"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": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/",
"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": {
"@node-rs/jieba": "^2.0.1",
"sqlite-vec": "0.1.7-alpha.2"
},
"peerDependencies": {
"openclaw": ">=2026.3.7",
"node-llama-cpp": "^3.16.2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
},
"node-llama-cpp": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
]
}
}