openclaw-cortex-memory 0.1.0-Alpha.7 → 0.1.0-Alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/SKILL.md +2 -2
- package/dist/openclaw.plugin.json +1 -2
- package/openclaw.plugin.json +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# OpenClaw Cortex Memory
|
|
2
2
|
|
|
3
|
-
OpenClaw
|
|
4
|
-
可作为 OpenClaw 的 memory slot 直接接入,支持从历史会话持续沉淀可复用记忆。
|
|
3
|
+
面向 OpenClaw 的长期记忆插件,集成多路检索、事件归档、图谱关系、向量化与反衰减排序,支持历史增量导入、规则反思和可观测诊断,帮助 Agent 在跨会话中持续积累并稳定调用高价值记忆。
|
|
5
4
|
|
|
6
5
|
发布签名见 [SIGNATURE.md]
|
|
7
6
|
|
|
@@ -70,7 +69,7 @@ pnpm openclaw plugins enable openclaw-cortex-memory
|
|
|
70
69
|
第三种安装方式(当 ClawHub/npm 解析受网络影响时):
|
|
71
70
|
|
|
72
71
|
```bash
|
|
73
|
-
curl -L -o /tmp/cortex.tgz https://registry.npmjs.org/openclaw-cortex-memory/-/openclaw-cortex-memory-0.1.0-Alpha.
|
|
72
|
+
curl -L -o /tmp/cortex.tgz https://registry.npmjs.org/openclaw-cortex-memory/-/openclaw-cortex-memory-0.1.0-Alpha.8.tgz
|
|
74
73
|
cd ~/openclaw
|
|
75
74
|
pnpm openclaw plugins install /tmp/cortex.tgz
|
|
76
75
|
pnpm openclaw plugins enable openclaw-cortex-memory
|
package/SKILL.md
CHANGED
|
@@ -57,7 +57,7 @@ pnpm openclaw gateway restart
|
|
|
57
57
|
第三种安装方式(当 ClawHub/npm 解析受网络影响时):
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
curl -L -o /tmp/cortex.tgz https://registry.npmjs.org/openclaw-cortex-memory/-/openclaw-cortex-memory-0.1.0-Alpha.
|
|
60
|
+
curl -L -o /tmp/cortex.tgz https://registry.npmjs.org/openclaw-cortex-memory/-/openclaw-cortex-memory-0.1.0-Alpha.8.tgz
|
|
61
61
|
cd ~/openclaw
|
|
62
62
|
pnpm openclaw plugins install /tmp/cortex.tgz
|
|
63
63
|
pnpm openclaw plugins enable openclaw-cortex-memory
|
|
@@ -88,7 +88,7 @@ git clone https://github.com/deki18/openclaw-cortex-memory.git ~/openclaw-cortex
|
|
|
88
88
|
cd ~/openclaw-cortex-memory-src
|
|
89
89
|
npm install && npm run build && npm pack
|
|
90
90
|
cd ~/openclaw
|
|
91
|
-
pnpm openclaw plugins install ~/openclaw-cortex-memory-src/openclaw-cortex-memory-0.1.0-Alpha.
|
|
91
|
+
pnpm openclaw plugins install ~/openclaw-cortex-memory-src/openclaw-cortex-memory-0.1.0-Alpha.8.tgz
|
|
92
92
|
pnpm openclaw gateway restart
|
|
93
93
|
```
|
|
94
94
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-cortex-memory",
|
|
3
3
|
"name": "Cortex Memory",
|
|
4
|
-
"version": "0.1.0-Alpha.
|
|
4
|
+
"version": "0.1.0-Alpha.8",
|
|
5
5
|
"description": "Long-term memory system with semantic, episodic, and procedural memory for AI Agents",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"author": "deki18",
|
|
@@ -442,7 +442,6 @@
|
|
|
442
442
|
"additionalProperties": false
|
|
443
443
|
}
|
|
444
444
|
},
|
|
445
|
-
"required": ["embedding", "llm", "reranker"],
|
|
446
445
|
"additionalProperties": false
|
|
447
446
|
}
|
|
448
447
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-cortex-memory",
|
|
3
3
|
"name": "Cortex Memory",
|
|
4
|
-
"version": "0.1.0-Alpha.
|
|
4
|
+
"version": "0.1.0-Alpha.8",
|
|
5
5
|
"description": "Long-term memory system with semantic, episodic, and procedural memory for AI Agents",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"author": "deki18",
|
|
@@ -442,7 +442,6 @@
|
|
|
442
442
|
"additionalProperties": false
|
|
443
443
|
}
|
|
444
444
|
},
|
|
445
|
-
"required": ["embedding", "llm", "reranker"],
|
|
446
445
|
"additionalProperties": false
|
|
447
446
|
}
|
|
448
447
|
}
|