@joshuaswarren/openclaw-engram 9.3.22 → 9.3.24

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-engram",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "9.3.22",
4
+ "version": "9.3.24",
5
5
  "kind": "memory",
6
6
  "description": "Local semantic memory for OpenClaw with bundled Remnic core runtime. Requires plugins.slots.memory set to this plugin id for hooks to fire.",
7
7
  "setup": {
@@ -288,6 +288,83 @@
288
288
  "default": false,
289
289
  "description": "Allow automated cold-tier backfill jobs to repair parity gaps"
290
290
  },
291
+ "qmdSupportedVersion": {
292
+ "type": "string",
293
+ "default": "2.5.1",
294
+ "description": "Highest QMD version this Remnic build will auto-install"
295
+ },
296
+ "qmdAutoUpgradeEnabled": {
297
+ "type": "boolean",
298
+ "default": false,
299
+ "description": "Opt-in auto-upgrade for PATH/fallback QMD installs"
300
+ },
301
+ "qmdAutoUpgradeCheckIntervalMs": {
302
+ "type": "number",
303
+ "minimum": 60000,
304
+ "default": 86400000,
305
+ "description": "Minimum interval between QMD auto-upgrade checks"
306
+ },
307
+ "qmdChunkStrategy": {
308
+ "type": "string",
309
+ "enum": [
310
+ "auto",
311
+ "regex"
312
+ ],
313
+ "default": "auto",
314
+ "description": "QMD chunk strategy forwarded when the installed QMD supports it"
315
+ },
316
+ "qmdCandidateLimit": {
317
+ "type": "number",
318
+ "minimum": 1,
319
+ "description": "Optional candidate limit forwarded to supported QMD query paths"
320
+ },
321
+ "qmdQueryRerankEnabled": {
322
+ "type": "boolean",
323
+ "default": true,
324
+ "description": "When false, ask supported QMD versions to skip the built-in rerank step"
325
+ },
326
+ "qmdIndexName": {
327
+ "type": "string",
328
+ "description": "Optional QMD named index forwarded as qmd --index <name> when supported. Leave unset during upgrades unless existing QMD data already lives in that named index."
329
+ },
330
+ "qmdForceCpu": {
331
+ "type": "boolean",
332
+ "default": false,
333
+ "description": "Set QMD_FORCE_CPU=1 for QMD child processes to bypass GPU probing and run predictably on CPU"
334
+ },
335
+ "qmdGpuBackend": {
336
+ "type": [
337
+ "string",
338
+ "boolean"
339
+ ],
340
+ "enum": [
341
+ "auto",
342
+ "metal",
343
+ "cuda",
344
+ "vulkan",
345
+ "false",
346
+ false
347
+ ],
348
+ "description": "Optional QMD_LLAMA_GPU override for QMD child processes"
349
+ },
350
+ "qmdEmbedParallelism": {
351
+ "type": "number",
352
+ "minimum": 1,
353
+ "maximum": 8,
354
+ "description": "Optional QMD_EMBED_PARALLELISM override, clamped to 1-8"
355
+ },
356
+ "qmdEmbedModel": {
357
+ "type": "string",
358
+ "description": "Optional QMD_EMBED_MODEL override"
359
+ },
360
+ "qmdRerankModel": {
361
+ "type": "string",
362
+ "description": "Optional QMD_RERANK_MODEL override"
363
+ },
364
+ "qmdGenerateModel": {
365
+ "type": "string",
366
+ "description": "Optional QMD_GENERATE_MODEL override"
367
+ },
291
368
  "embeddingFallbackEnabled": {
292
369
  "type": "boolean",
293
370
  "default": true,
@@ -303,6 +380,10 @@
303
380
  "default": "auto",
304
381
  "description": "Embedding provider selection for semantic fallback"
305
382
  },
383
+ "embeddingFallbackModel": {
384
+ "type": "string",
385
+ "description": "Optional model identifier for embedding fallback requests. Defaults to localLlmModel for legacy installs."
386
+ },
306
387
  "qmdPath": {
307
388
  "type": "string",
308
389
  "description": "Optional absolute path to qmd binary (bypasses PATH/fallback discovery)"
@@ -4869,6 +4950,66 @@
4869
4950
  "advanced": true,
4870
4951
  "help": "Enable automated cold-tier backfill runs for parity repair"
4871
4952
  },
4953
+ "qmdSupportedVersion": {
4954
+ "label": "QMD Supported Version",
4955
+ "advanced": true,
4956
+ "placeholder": "2.5.1"
4957
+ },
4958
+ "qmdAutoUpgradeEnabled": {
4959
+ "label": "QMD Auto Upgrade",
4960
+ "advanced": true,
4961
+ "help": "Upgrade PATH/fallback QMD installs to the supported version; explicit qmdPath installs are skipped"
4962
+ },
4963
+ "qmdAutoUpgradeCheckIntervalMs": {
4964
+ "label": "QMD Auto Upgrade Interval",
4965
+ "advanced": true,
4966
+ "placeholder": "86400000"
4967
+ },
4968
+ "qmdChunkStrategy": {
4969
+ "label": "QMD Chunk Strategy",
4970
+ "advanced": true,
4971
+ "placeholder": "auto"
4972
+ },
4973
+ "qmdCandidateLimit": {
4974
+ "label": "QMD Candidate Limit",
4975
+ "advanced": true
4976
+ },
4977
+ "qmdQueryRerankEnabled": {
4978
+ "label": "QMD Query Rerank",
4979
+ "advanced": true
4980
+ },
4981
+ "qmdIndexName": {
4982
+ "label": "QMD Index Name",
4983
+ "advanced": true,
4984
+ "help": "Use a named QMD index when QMD 2.5+ supports --index. Changing this selects a different SQLite DB; keep it unset for existing default-index installs."
4985
+ },
4986
+ "qmdForceCpu": {
4987
+ "label": "QMD Force CPU",
4988
+ "advanced": true,
4989
+ "help": "Set QMD_FORCE_CPU=1 for QMD child processes"
4990
+ },
4991
+ "qmdGpuBackend": {
4992
+ "label": "QMD GPU Backend",
4993
+ "advanced": true,
4994
+ "placeholder": "metal"
4995
+ },
4996
+ "qmdEmbedParallelism": {
4997
+ "label": "QMD Embed Parallelism",
4998
+ "advanced": true,
4999
+ "placeholder": "4"
5000
+ },
5001
+ "qmdEmbedModel": {
5002
+ "label": "QMD Embed Model",
5003
+ "advanced": true
5004
+ },
5005
+ "qmdRerankModel": {
5006
+ "label": "QMD Rerank Model",
5007
+ "advanced": true
5008
+ },
5009
+ "qmdGenerateModel": {
5010
+ "label": "QMD Generate Model",
5011
+ "advanced": true
5012
+ },
4872
5013
  "embeddingFallbackEnabled": {
4873
5014
  "label": "Embedding Fallback",
4874
5015
  "help": "Use semantic embeddings when QMD is unavailable or no results are found"
@@ -4878,6 +5019,12 @@
4878
5019
  "advanced": true,
4879
5020
  "placeholder": "auto"
4880
5021
  },
5022
+ "embeddingFallbackModel": {
5023
+ "label": "Embedding Model",
5024
+ "advanced": true,
5025
+ "placeholder": "(defaults to local LLM model)",
5026
+ "help": "Optional embedding model for semantic fallback. Use this when the local chat model and embedding model are different."
5027
+ },
4881
5028
  "qmdPath": {
4882
5029
  "label": "QMD Path",
4883
5030
  "advanced": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joshuaswarren/openclaw-engram",
3
- "version": "9.3.22",
3
+ "version": "9.3.24",
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",
@@ -48,8 +48,8 @@
48
48
  }
49
49
  },
50
50
  "dependencies": {
51
- "@remnic/plugin-openclaw": "^1.0.36",
52
- "@remnic/core": "^1.1.12"
51
+ "@remnic/plugin-openclaw": "^1.0.38",
52
+ "@remnic/core": "^1.1.14"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "openclaw": ">=2026.5.16-beta.1"