@remnic/plugin-openclaw 1.0.12 → 1.0.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.
@@ -2192,6 +2192,23 @@
2192
2192
  "default": 300,
2193
2193
  "description": "Max tokens for each TMT summary node. Default: 300."
2194
2194
  },
2195
+ "explicitCueRecallEnabled": {
2196
+ "type": "boolean",
2197
+ "default": false,
2198
+ "description": "Front-load exact LCM evidence for query-visible cues such as turns, dates, ids, files, and tools."
2199
+ },
2200
+ "explicitCueRecallMaxChars": {
2201
+ "type": "number",
2202
+ "default": 2400,
2203
+ "minimum": 0,
2204
+ "description": "Character budget for the explicit cue evidence recall section."
2205
+ },
2206
+ "explicitCueRecallMaxReferences": {
2207
+ "type": "number",
2208
+ "default": 24,
2209
+ "minimum": 0,
2210
+ "description": "Maximum query-visible cues expanded by explicit cue recall."
2211
+ },
2195
2212
  "queryExpansionEnabled": {
2196
2213
  "type": "boolean",
2197
2214
  "default": false,
@@ -4260,6 +4277,16 @@
4260
4277
  "default": 90,
4261
4278
  "description": "Days to retain archived LCM summaries"
4262
4279
  },
4280
+ "messagePartsEnabled": {
4281
+ "type": "boolean",
4282
+ "default": false,
4283
+ "description": "Opt in to structured LCM message-part capture for tool calls, file references, patches, and reasoning markers."
4284
+ },
4285
+ "messagePartsRecallMaxResults": {
4286
+ "type": "number",
4287
+ "default": 6,
4288
+ "description": "Maximum structured message-part matches to inject into recall when messagePartsEnabled is true."
4289
+ },
4263
4290
  "ircEnabled": {
4264
4291
  "type": "boolean",
4265
4292
  "default": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/plugin-openclaw",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "OpenClaw adapter for Remnic memory — thin wrapper delegating to @remnic/core",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "openai": "^6.0.0",
28
- "@remnic/core": "^1.1.4"
28
+ "@remnic/core": "^1.1.5"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "openclaw": ">=2026.4.8"