@joshuaswarren/openclaw-engram 9.0.37 → 9.0.39
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 +8 -0
- package/dist/index.js +864 -470
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +21 -2
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -1174,7 +1174,7 @@
|
|
|
1174
1174
|
"harmonicRetrievalEnabled": {
|
|
1175
1175
|
"type": "boolean",
|
|
1176
1176
|
"default": false,
|
|
1177
|
-
"description": "Enable
|
|
1177
|
+
"description": "Enable harmonic retrieval blending over abstraction nodes and cue anchors, including recall-section injection and harmonic-search diagnostics."
|
|
1178
1178
|
},
|
|
1179
1179
|
"abstractionAnchorsEnabled": {
|
|
1180
1180
|
"type": "boolean",
|
|
@@ -1185,6 +1185,16 @@
|
|
|
1185
1185
|
"type": "string",
|
|
1186
1186
|
"description": "Override the abstraction-node store directory (defaults to {memoryDir}/state/abstraction-nodes)."
|
|
1187
1187
|
},
|
|
1188
|
+
"verifiedRecallEnabled": {
|
|
1189
|
+
"type": "boolean",
|
|
1190
|
+
"default": false,
|
|
1191
|
+
"description": "Inject prompt-relevant memory boxes only when their cited source memories verify as non-archived episodes."
|
|
1192
|
+
},
|
|
1193
|
+
"semanticRulePromotionEnabled": {
|
|
1194
|
+
"type": "boolean",
|
|
1195
|
+
"default": false,
|
|
1196
|
+
"description": "Reserve semantic-rule promotion surfaces for a later rollout after verified episodic recall is benchmarked."
|
|
1197
|
+
},
|
|
1188
1198
|
"actionGraphRecallEnabled": {
|
|
1189
1199
|
"type": "boolean",
|
|
1190
1200
|
"default": false,
|
|
@@ -2171,7 +2181,7 @@
|
|
|
2171
2181
|
},
|
|
2172
2182
|
"harmonicRetrievalEnabled": {
|
|
2173
2183
|
"label": "Harmonic Retrieval",
|
|
2174
|
-
"help": "Enable
|
|
2184
|
+
"help": "Enable harmonic retrieval blending over abstraction nodes and cue anchors, including recall-section injection and harmonic-search diagnostics."
|
|
2175
2185
|
},
|
|
2176
2186
|
"abstractionAnchorsEnabled": {
|
|
2177
2187
|
"label": "Abstraction Anchors",
|
|
@@ -2184,6 +2194,15 @@
|
|
|
2184
2194
|
"placeholder": "{memoryDir}/state/abstraction-nodes",
|
|
2185
2195
|
"help": "Override where abstraction nodes are stored."
|
|
2186
2196
|
},
|
|
2197
|
+
"verifiedRecallEnabled": {
|
|
2198
|
+
"label": "Verified Recall",
|
|
2199
|
+
"help": "Inject prompt-relevant memory boxes only when their cited source memories verify as non-archived episodes."
|
|
2200
|
+
},
|
|
2201
|
+
"semanticRulePromotionEnabled": {
|
|
2202
|
+
"label": "Semantic Rule Promotion",
|
|
2203
|
+
"advanced": true,
|
|
2204
|
+
"help": "Reserve future semantic-rule promotion surfaces until verified episodic recall is benchmarked."
|
|
2205
|
+
},
|
|
2187
2206
|
"actionGraphRecallEnabled": {
|
|
2188
2207
|
"label": "Action Graph Recall",
|
|
2189
2208
|
"help": "Write action-conditioned causal-stage edges from typed trajectory records into the causal graph."
|
package/package.json
CHANGED