openclaw-cortex-memory 0.1.0-Alpha.21 → 0.1.0-Alpha.22

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 CHANGED
@@ -80,6 +80,24 @@ openclaw plugins enable openclaw-cortex-memory
80
80
  openclaw gateway restart
81
81
  ```
82
82
 
83
+ ### 卸载
84
+
85
+ ```bash
86
+ cd ~/openclaw
87
+ openclaw plugins disable openclaw-cortex-memory
88
+ openclaw plugins uninstall openclaw-cortex-memory
89
+ openclaw gateway restart
90
+ ```
91
+
92
+ 如需卸载插件但保留记忆数据:
93
+
94
+ ```bash
95
+ cd ~/openclaw
96
+ openclaw plugins disable openclaw-cortex-memory
97
+ openclaw plugins uninstall openclaw-cortex-memory --keep-data
98
+ openclaw gateway restart
99
+ ```
100
+
83
101
  ### 最小配置(推荐先跑起来)
84
102
 
85
103
  ```json
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cortex-memory",
3
3
  "name": "Cortex Memory",
4
- "version": "0.1.0-Alpha.21",
4
+ "version": "0.1.0-Alpha.22",
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",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cortex-memory",
3
3
  "name": "Cortex Memory",
4
- "version": "0.1.0-Alpha.21",
4
+ "version": "0.1.0-Alpha.22",
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.21",
3
+ "version": "0.1.0-Alpha.22",
4
4
  "description": "Long-term memory system for OpenClaw AI Agent",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -55,18 +55,20 @@
55
55
  "openclaw.plugin.json",
56
56
  "SKILL.md"
57
57
  ],
58
- "openclaw": {
59
- "plugin": true,
60
- "requiresPython": false,
61
- "cli": "cortex-memory",
62
- "build": {
63
- "openclawVersion": "2026.3.22"
64
- },
65
- "compat": {
66
- "pluginApi": ">=2026.3.22"
67
- },
68
- "extensions": [
69
- "./dist/index.js"
70
- ]
71
- }
58
+ "openclaw": {
59
+ "plugin": true,
60
+ "requiresPython": false,
61
+ "cli": "cortex-memory",
62
+ "build": {
63
+ "openclawVersion": "2026.4.5",
64
+ "pluginSdkVersion": "2026.4.5"
65
+ },
66
+ "compat": {
67
+ "pluginApi": ">=2026.3.24-beta.2",
68
+ "minGatewayVersion": "2026.3.24-beta.2"
69
+ },
70
+ "extensions": [
71
+ "./dist/index.js"
72
+ ]
73
+ }
72
74
  }