openclaw-cortex-memory 0.1.0 → 0.1.1

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
@@ -131,10 +131,10 @@ openclaw plugins enable openclaw-cortex-memory
131
131
  如果 `clawhub:` 安装出现 `fetch failed`,可改用 npm 包本地安装(推荐兜底):
132
132
 
133
133
  ```bash
134
- npm pack openclaw-cortex-memory@0.1.0
135
- openclaw plugins install ./openclaw-cortex-memory-0.1.0.tgz
134
+ npm pack openclaw-cortex-memory@0.1.1
135
+ openclaw plugins install ./openclaw-cortex-memory-0.1.1.tgz
136
136
  openclaw plugins enable openclaw-cortex-memory
137
- rm ./openclaw-cortex-memory-0.1.0.tgz
137
+ rm ./openclaw-cortex-memory-0.1.1.tgz
138
138
  ```
139
139
 
140
140
  完成安装后,请先按下方"最小配置"示例配置 `openclaw.json`,确认配置无误后再启动 gateway。
@@ -143,10 +143,10 @@ rm ./openclaw-cortex-memory-0.1.0.tgz
143
143
 
144
144
  ```bash
145
145
  rm -r ~/.openclaw/extensions/openclaw-cortex-memory
146
- npm pack openclaw-cortex-memory@0.1.0
147
- openclaw plugins install ./openclaw-cortex-memory-0.1.0.tgz
146
+ npm pack openclaw-cortex-memory@0.1.1
147
+ openclaw plugins install ./openclaw-cortex-memory-0.1.1.tgz
148
148
  openclaw plugins enable openclaw-cortex-memory
149
- rm ./openclaw-cortex-memory-0.1.0.tgz
149
+ rm ./openclaw-cortex-memory-0.1.1.tgz
150
150
  openclaw plugins list --enabled
151
151
  openclaw gateway restart
152
152
  ```
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cortex-memory",
3
3
  "name": "Cortex Memory",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
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",
@@ -18,6 +18,26 @@
18
18
  "channels": false,
19
19
  "memory": true
20
20
  },
21
+ "contracts": {
22
+ "tools": [
23
+ "search_memory",
24
+ "store_event",
25
+ "query_graph",
26
+ "export_graph_view",
27
+ "lint_memory_wiki",
28
+ "list_graph_conflicts",
29
+ "resolve_graph_conflict",
30
+ "get_hot_context",
31
+ "get_auto_context",
32
+ "reflect_memory",
33
+ "sync_memory",
34
+ "backfill_embeddings",
35
+ "delete_memory",
36
+ "cortex_diagnostics",
37
+ "diagnostics",
38
+ "cortex_memory_status"
39
+ ]
40
+ },
21
41
  "runtimeRequirements": {
22
42
  "requiresCredentials": true,
23
43
  "requiresNetwork": true,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-cortex-memory",
3
3
  "name": "Cortex Memory",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
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",
@@ -18,6 +18,26 @@
18
18
  "channels": false,
19
19
  "memory": true
20
20
  },
21
+ "contracts": {
22
+ "tools": [
23
+ "search_memory",
24
+ "store_event",
25
+ "query_graph",
26
+ "export_graph_view",
27
+ "lint_memory_wiki",
28
+ "list_graph_conflicts",
29
+ "resolve_graph_conflict",
30
+ "get_hot_context",
31
+ "get_auto_context",
32
+ "reflect_memory",
33
+ "sync_memory",
34
+ "backfill_embeddings",
35
+ "delete_memory",
36
+ "cortex_diagnostics",
37
+ "diagnostics",
38
+ "cortex_memory_status"
39
+ ]
40
+ },
21
41
  "runtimeRequirements": {
22
42
  "requiresCredentials": true,
23
43
  "requiresNetwork": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-cortex-memory",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Long-term memory system for OpenClaw AI Agent",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,19 +14,19 @@
14
14
  "test:compat": "node scripts/compat-regression.js",
15
15
  "test:model": "node scripts/model-regression.js",
16
16
  "test:graph": "node scripts/graph-eval.js",
17
- "test:graph-quality": "node scripts/graph-quality-eval.js",
18
- "test:graph-quality-zh": "node scripts/graph-quality-eval.js --gold eval/graph_quality_gold.zh.jsonl --pred eval/graph_quality_predictions.zh.sample.jsonl --thresholds eval/graph_quality_thresholds.json",
19
- "test:m1-ingest-regression": "node scripts/m1-ingest-regression.js",
20
- "test:m2-quality-dedup": "node scripts/m2-quality-dedup-regression.js",
21
- "test:m3-graph-quality-conflicts": "node scripts/m3-graph-quality-conflicts-regression.js",
22
- "test:m5-cross-store": "node scripts/m5-cross-store-regression.js",
23
- "test:wiki-projection": "node scripts/wiki-projection-regression.js",
24
- "test:wiki-lint": "node scripts/wiki-lint-regression.js",
25
- "test:read-search": "node scripts/read-search-regression.js",
26
- "test:extended-blocking": "npm run test:m1-ingest-regression && npm run test:m2-quality-dedup && npm run test:m3-graph-quality-conflicts && npm run test:m5-cross-store && npm run test:wiki-projection && npm run test:wiki-lint",
27
- "test:ci-core": "npm run test:m1-ingest-regression && npm run test:m2-quality-dedup && npm run test:m3-graph-quality-conflicts && npm run test:m5-cross-store && npm run test:wiki-projection && npm run test:wiki-lint && npm run test:graph && npm run test:lengthnorm && npm run test:read-search",
28
- "test:lengthnorm": "node scripts/lengthnorm-regression.js",
29
- "test:all": "npm run test:compat && npm run test:model && npm run test:graph && npm run test:graph-quality && npm run test:graph-quality-zh && npm run test:lengthnorm && npm run test:read-search",
17
+ "test:graph-quality": "node scripts/graph-quality-eval.js",
18
+ "test:graph-quality-zh": "node scripts/graph-quality-eval.js --gold eval/graph_quality_gold.zh.jsonl --pred eval/graph_quality_predictions.zh.sample.jsonl --thresholds eval/graph_quality_thresholds.json",
19
+ "test:m1-ingest-regression": "node scripts/m1-ingest-regression.js",
20
+ "test:m2-quality-dedup": "node scripts/m2-quality-dedup-regression.js",
21
+ "test:m3-graph-quality-conflicts": "node scripts/m3-graph-quality-conflicts-regression.js",
22
+ "test:m5-cross-store": "node scripts/m5-cross-store-regression.js",
23
+ "test:wiki-projection": "node scripts/wiki-projection-regression.js",
24
+ "test:wiki-lint": "node scripts/wiki-lint-regression.js",
25
+ "test:read-search": "node scripts/read-search-regression.js",
26
+ "test:extended-blocking": "npm run test:m1-ingest-regression && npm run test:m2-quality-dedup && npm run test:m3-graph-quality-conflicts && npm run test:m5-cross-store && npm run test:wiki-projection && npm run test:wiki-lint",
27
+ "test:ci-core": "npm run test:m1-ingest-regression && npm run test:m2-quality-dedup && npm run test:m3-graph-quality-conflicts && npm run test:m5-cross-store && npm run test:wiki-projection && npm run test:wiki-lint && npm run test:graph && npm run test:lengthnorm && npm run test:read-search",
28
+ "test:lengthnorm": "node scripts/lengthnorm-regression.js",
29
+ "test:all": "npm run test:compat && npm run test:model && npm run test:graph && npm run test:graph-quality && npm run test:graph-quality-zh && npm run test:lengthnorm && npm run test:read-search",
30
30
  "release:check": "node scripts/release-pipeline.js",
31
31
  "dev": "tsc --watch",
32
32
  "prepack": "npm run build",