@joshuaswarren/openclaw-engram 9.3.11 → 9.3.14
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 +1 -1
- package/openclaw.plugin.json +52 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
Replace this package with the canonical one:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
openclaw plugins install
|
|
10
|
+
openclaw plugins install clawhub:@remnic/plugin-openclaw
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Your existing memories, configuration, and settings will continue to work. The rename only changes the package name -- all functionality is preserved.
|
package/openclaw.plugin.json
CHANGED
|
@@ -10,6 +10,58 @@
|
|
|
10
10
|
"commandsList": true,
|
|
11
11
|
"beforeReset": true
|
|
12
12
|
},
|
|
13
|
+
"contracts": {
|
|
14
|
+
"tools": [
|
|
15
|
+
"compounding_promote_candidate",
|
|
16
|
+
"compounding_weekly_synthesize",
|
|
17
|
+
"compression_guidelines_activate",
|
|
18
|
+
"compression_guidelines_optimize",
|
|
19
|
+
"context_checkpoint",
|
|
20
|
+
"continuity_audit_generate",
|
|
21
|
+
"continuity_incident_close",
|
|
22
|
+
"continuity_incident_list",
|
|
23
|
+
"continuity_incident_open",
|
|
24
|
+
"continuity_loop_add_or_update",
|
|
25
|
+
"continuity_loop_review",
|
|
26
|
+
"conversation_index_update",
|
|
27
|
+
"engram_context_describe",
|
|
28
|
+
"engram_context_expand",
|
|
29
|
+
"engram_context_search",
|
|
30
|
+
"engram_profiling_report",
|
|
31
|
+
"identity_anchor_get",
|
|
32
|
+
"identity_anchor_update",
|
|
33
|
+
"memory_action_apply",
|
|
34
|
+
"memory_capture",
|
|
35
|
+
"memory_entities",
|
|
36
|
+
"memory_feedback",
|
|
37
|
+
"memory_feedback_last_recall",
|
|
38
|
+
"memory_get",
|
|
39
|
+
"memory_governance_run",
|
|
40
|
+
"memory_graph_explain_last_recall",
|
|
41
|
+
"memory_identity",
|
|
42
|
+
"memory_intent_debug",
|
|
43
|
+
"memory_last_recall",
|
|
44
|
+
"memory_profile",
|
|
45
|
+
"memory_promote",
|
|
46
|
+
"memory_qmd_debug",
|
|
47
|
+
"memory_questions",
|
|
48
|
+
"memory_search",
|
|
49
|
+
"memory_store",
|
|
50
|
+
"memory_summarize_hourly",
|
|
51
|
+
"remnic_context_describe",
|
|
52
|
+
"remnic_context_expand",
|
|
53
|
+
"remnic_context_search",
|
|
54
|
+
"remnic_profiling_report",
|
|
55
|
+
"shared_context_cross_signals_run",
|
|
56
|
+
"shared_context_curate_daily",
|
|
57
|
+
"shared_context_write_output",
|
|
58
|
+
"shared_feedback_record",
|
|
59
|
+
"shared_priorities_append",
|
|
60
|
+
"work_board",
|
|
61
|
+
"work_project",
|
|
62
|
+
"work_task"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
13
65
|
"configSchema": {
|
|
14
66
|
"type": "object",
|
|
15
67
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joshuaswarren/openclaw-engram",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.14",
|
|
4
4
|
"description": "Deprecated compatibility shim for Engram installs. Re-exports @remnic/plugin-openclaw and forwards engram-access to @remnic/core.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
]
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@remnic/
|
|
35
|
-
"@remnic/
|
|
34
|
+
"@remnic/plugin-openclaw": "^1.0.18",
|
|
35
|
+
"@remnic/core": "^1.1.7"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"openclaw": ">=2026.4.8"
|