openclaw-cortex-memory 0.1.0-Alpha.28 → 0.1.0-Alpha.29
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 +7 -7
- package/dist/openclaw.plugin.json +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -5
package/README.md
CHANGED
|
@@ -109,16 +109,16 @@ openclaw plugins enable openclaw-cortex-memory
|
|
|
109
109
|
如果 `clawhub:` 安装出现 `fetch failed`,可改用 npm 包本地安装(推荐兜底):
|
|
110
110
|
|
|
111
111
|
```bash
|
|
112
|
-
bash -lc 'set -e; TMP="$(mktemp -d)"; cd "$TMP"; npm pack openclaw-cortex-memory@0.1.0-Alpha.
|
|
112
|
+
bash -lc 'set -e; TMP="$(mktemp -d)"; cd "$TMP"; npm pack openclaw-cortex-memory@0.1.0-Alpha.29 >/dev/null; PKG="$(ls openclaw-cortex-memory-*.tgz | head -n1)"; openclaw plugins install "$TMP/$PKG"; openclaw plugins enable openclaw-cortex-memory'
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
也可分步执行(便于排错):
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
|
-
npm pack openclaw-cortex-memory@0.1.0-Alpha.
|
|
119
|
-
openclaw plugins install ./openclaw-cortex-memory-0.1.0-Alpha.
|
|
118
|
+
npm pack openclaw-cortex-memory@0.1.0-Alpha.29
|
|
119
|
+
openclaw plugins install ./openclaw-cortex-memory-0.1.0-Alpha.29.tgz
|
|
120
120
|
openclaw plugins enable openclaw-cortex-memory
|
|
121
|
-
rm ./openclaw-cortex-memory-0.1.0-Alpha.
|
|
121
|
+
rm ./openclaw-cortex-memory-0.1.0-Alpha.29.tgz
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
完成安装后,请先按下方“最小配置”示例配置 `openclaw.json`,确认配置无误后再启动 gateway。
|
|
@@ -127,10 +127,10 @@ rm ./openclaw-cortex-memory-0.1.0-Alpha.28.tgz
|
|
|
127
127
|
|
|
128
128
|
```bash
|
|
129
129
|
rm -r ~/.openclaw/extensions/openclaw-cortex-memory
|
|
130
|
-
npm pack openclaw-cortex-memory@0.1.0-Alpha.
|
|
131
|
-
openclaw plugins install ./openclaw-cortex-memory-0.1.0-Alpha.
|
|
130
|
+
npm pack openclaw-cortex-memory@0.1.0-Alpha.29
|
|
131
|
+
openclaw plugins install ./openclaw-cortex-memory-0.1.0-Alpha.29.tgz
|
|
132
132
|
openclaw plugins enable openclaw-cortex-memory
|
|
133
|
-
rm ./openclaw-cortex-memory-0.1.0-Alpha.
|
|
133
|
+
rm ./openclaw-cortex-memory-0.1.0-Alpha.29.tgz
|
|
134
134
|
openclaw plugins list
|
|
135
135
|
openclaw gateway restart
|
|
136
136
|
```
|
|
@@ -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.29",
|
|
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",
|
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.29",
|
|
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",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-cortex-memory",
|
|
3
|
-
"version": "0.1.0-Alpha.
|
|
3
|
+
"version": "0.1.0-Alpha.29",
|
|
4
4
|
"description": "Long-term memory system for OpenClaw AI Agent",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -61,10 +61,6 @@
|
|
|
61
61
|
"plugin": true,
|
|
62
62
|
"requiresPython": false,
|
|
63
63
|
"cli": "cortex-memory",
|
|
64
|
-
"hooks": [
|
|
65
|
-
"message_received",
|
|
66
|
-
"session_end"
|
|
67
|
-
],
|
|
68
64
|
"requires": {
|
|
69
65
|
"credentials": true,
|
|
70
66
|
"network": true,
|