@joshuaswarren/openclaw-engram 9.3.629 → 9.3.631
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/openclaw.plugin.json +60 -12
- package/package.json +3 -3
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-engram",
|
|
3
3
|
"name": "Remnic OpenClaw Plugin",
|
|
4
|
-
"version": "9.3.
|
|
4
|
+
"version": "9.3.631",
|
|
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": {
|
|
@@ -805,14 +805,40 @@
|
|
|
805
805
|
},
|
|
806
806
|
"offTheRecordEnabled": {
|
|
807
807
|
"type": "boolean",
|
|
808
|
-
"default":
|
|
808
|
+
"default": true,
|
|
809
809
|
"description": "Honor a spoken 'off the record' marker by eliding segments until 'back on the record'."
|
|
810
810
|
},
|
|
811
811
|
"digestEnabled": {
|
|
812
812
|
"type": "boolean",
|
|
813
|
-
"default":
|
|
813
|
+
"default": true,
|
|
814
814
|
"description": "Write one compact daily-digest memory per synced source/day."
|
|
815
815
|
},
|
|
816
|
+
"autoSyncEnabled": {
|
|
817
|
+
"type": "boolean",
|
|
818
|
+
"default": true,
|
|
819
|
+
"description": "Periodically refresh transcripts in-process on long-lived hosts. Every tick re-syncs a rolling window ending today (existing day files included)."
|
|
820
|
+
},
|
|
821
|
+
"autoSyncIntervalMinutes": {
|
|
822
|
+
"type": "integer",
|
|
823
|
+
"minimum": 1,
|
|
824
|
+
"maximum": 1440,
|
|
825
|
+
"default": 15,
|
|
826
|
+
"description": "Minutes between auto-sync ticks."
|
|
827
|
+
},
|
|
828
|
+
"autoSyncDays": {
|
|
829
|
+
"type": "integer",
|
|
830
|
+
"minimum": 1,
|
|
831
|
+
"maximum": 90,
|
|
832
|
+
"default": 2,
|
|
833
|
+
"description": "Rolling window (days ending today) refreshed on each auto-sync tick."
|
|
834
|
+
},
|
|
835
|
+
"autoSyncDeepDays": {
|
|
836
|
+
"type": "integer",
|
|
837
|
+
"minimum": 0,
|
|
838
|
+
"maximum": 90,
|
|
839
|
+
"default": 7,
|
|
840
|
+
"description": "Once-per-local-day deep refresh window (days) for late uploads and provider re-processing. 0 disables; otherwise must be >= autoSyncDays."
|
|
841
|
+
},
|
|
816
842
|
"corrections": {
|
|
817
843
|
"type": "array",
|
|
818
844
|
"default": [],
|
|
@@ -887,10 +913,32 @@
|
|
|
887
913
|
"enum": [
|
|
888
914
|
"off",
|
|
889
915
|
"review",
|
|
890
|
-
"auto"
|
|
916
|
+
"auto",
|
|
917
|
+
"smart"
|
|
891
918
|
],
|
|
892
|
-
"default": "
|
|
893
|
-
"description": "Memory creation trust gate: off = transcripts only; review =
|
|
919
|
+
"default": "smart",
|
|
920
|
+
"description": "Memory creation trust gate: smart (default) = LLM-judge + per-source trust prior + cross-device corroboration decide active/review/drop automatically; off = transcripts only; review = every candidate lands pending_review; auto = deterministic gates only, survivors active."
|
|
921
|
+
},
|
|
922
|
+
"sourceTrust": {
|
|
923
|
+
"type": "number",
|
|
924
|
+
"minimum": 0,
|
|
925
|
+
"maximum": 1,
|
|
926
|
+
"default": 0.8,
|
|
927
|
+
"description": "Trust prior for this source's transcription quality (0..1). Multiplies extraction confidence in smart mode — lower it for a device that mis-transcribes often."
|
|
928
|
+
},
|
|
929
|
+
"autoApproveTrust": {
|
|
930
|
+
"type": "number",
|
|
931
|
+
"minimum": 0,
|
|
932
|
+
"maximum": 1,
|
|
933
|
+
"default": 0.7,
|
|
934
|
+
"description": "Smart mode: trust score at/above which facts are written active."
|
|
935
|
+
},
|
|
936
|
+
"reviewTrust": {
|
|
937
|
+
"type": "number",
|
|
938
|
+
"minimum": 0,
|
|
939
|
+
"maximum": 1,
|
|
940
|
+
"default": 0.45,
|
|
941
|
+
"description": "Smart mode: trust score at/above which borderline facts are queued for review instead of dropped. Must be below autoApproveTrust."
|
|
894
942
|
},
|
|
895
943
|
"minConfidence": {
|
|
896
944
|
"type": "number",
|
|
@@ -914,18 +962,18 @@
|
|
|
914
962
|
"maxMemoriesPerDay": {
|
|
915
963
|
"type": "integer",
|
|
916
964
|
"minimum": 0,
|
|
917
|
-
"
|
|
918
|
-
"
|
|
919
|
-
"description": "Cap on memories created per source per day. Set to 0 to disable the cap."
|
|
965
|
+
"default": 0,
|
|
966
|
+
"description": "Cap on memories created per source per day. 0 (the default) disables the cap."
|
|
920
967
|
},
|
|
921
968
|
"importNativeMemories": {
|
|
922
969
|
"type": "string",
|
|
923
970
|
"enum": [
|
|
924
971
|
"off",
|
|
925
|
-
"review"
|
|
972
|
+
"review",
|
|
973
|
+
"smart"
|
|
926
974
|
],
|
|
927
|
-
"default": "
|
|
928
|
-
"description": "Import provider-extracted memories (Bee facts / Omi memories)
|
|
975
|
+
"default": "smart",
|
|
976
|
+
"description": "Import provider-extracted memories (Bee facts / Omi memories): smart (default) routes them through the same judge + trust pipeline with a reduced prior; review always queues; off skips."
|
|
929
977
|
},
|
|
930
978
|
"cleanup": {
|
|
931
979
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joshuaswarren/openclaw-engram",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.631",
|
|
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",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@remnic/plugin-openclaw": "^9.3.
|
|
55
|
-
"@remnic/core": "^9.3.
|
|
54
|
+
"@remnic/plugin-openclaw": "^9.3.631",
|
|
55
|
+
"@remnic/core": "^9.3.631"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"openclaw": ">=2026.4.1 || 2026.4.7-1 || 2026.4.9-beta.1 || 2026.4.11-beta.1 || 2026.4.12-beta.1 || 2026.4.14-beta.1 || 2026.4.15-beta.1 || 2026.4.15-beta.2 || 2026.4.19-beta.1 || 2026.4.19-beta.2 || 2026.4.20-beta.1 || 2026.4.20-beta.2 || 2026.4.22-beta.1 || 2026.4.23-beta.1 || 2026.4.23-beta.2 || 2026.4.23-beta.3 || 2026.4.23-beta.4 || 2026.4.23-beta.5 || 2026.4.23-beta.6 || 2026.4.24-beta.1 || 2026.4.24-beta.2 || 2026.4.24-beta.3 || 2026.4.24-beta.4 || 2026.4.24-beta.5 || 2026.4.24-beta.6 || 2026.4.25-beta.1 || 2026.4.25-beta.2 || 2026.4.25-beta.3 || 2026.4.25-beta.4 || 2026.4.25-beta.5 || 2026.4.25-beta.6 || 2026.4.25-beta.7 || 2026.4.25-beta.8 || 2026.4.25-beta.9 || 2026.4.25-beta.10 || 2026.4.25-beta.11 || 2026.4.26-beta.1 || 2026.4.27-beta.1 || 2026.4.29-beta.1 || 2026.4.29-beta.2 || 2026.4.29-beta.3 || 2026.4.29-beta.4 || 2026.4.30-beta.1 || 2026.5.2-beta.1 || 2026.5.2-beta.2 || 2026.5.2-beta.3 || 2026.5.3-1 || 2026.5.3-beta.1 || 2026.5.3-beta.2 || 2026.5.3-beta.3 || 2026.5.3-beta.4 || 2026.5.4-beta.1 || 2026.5.4-beta.2 || 2026.5.4-beta.3 || 2026.5.5-beta.1 || 2026.5.5-beta.2 || 2026.5.6-beta.1 || 2026.5.7-beta.1 || 2026.5.9-beta.1 || 2026.5.10-beta.1 || 2026.5.10-beta.2 || 2026.5.10-beta.3 || 2026.5.10-beta.4 || 2026.5.10-beta.5 || 2026.5.10-beta.6 || 2026.5.12-beta.1 || 2026.5.12-beta.2 || 2026.5.12-beta.3 || 2026.5.12-beta.4 || 2026.5.12-beta.5 || 2026.5.12-beta.6 || 2026.5.12-beta.7 || 2026.5.12-beta.8 || 2026.5.14-beta.1 || 2026.5.14-beta.2 || 2026.5.16-beta.1 || 2026.5.16-beta.2 || 2026.5.16-beta.3 || 2026.5.16-beta.4 || 2026.5.16-beta.5 || 2026.5.16-beta.6 || 2026.5.16-beta.7 || 2026.5.18-beta.1 || 2026.5.19-alpha.1 || 2026.5.19-beta.1 || 2026.5.19-beta.2 || 2026.5.20-beta.1 || 2026.5.20-beta.2 || 2026.5.21-alpha.1 || 2026.5.21-beta.1 || 2026.5.22-beta.1 || 2026.5.23-alpha.1 || 2026.5.24-alpha.1 || 2026.5.24-beta.1 || 2026.5.24-beta.2 || 2026.5.25-alpha.1 || 2026.5.25-alpha.2 || 2026.5.25-beta.1 || 2026.5.26-beta.1 || 2026.5.26-beta.2 || 2026.5.27-alpha.1 || 2026.5.27-beta.1 || 2026.5.28-alpha.1 || 2026.5.28-beta.1 || 2026.5.28-beta.2 || 2026.5.28-beta.3 || 2026.5.28-beta.4 || 2026.5.29-alpha.1 || 2026.5.30-beta.1 || 2026.5.30-beta.2 || 2026.5.31-alpha.1 || 2026.5.31-beta.1 || 2026.5.31-beta.2 || 2026.5.31-beta.3 || 2026.5.31-beta.4 || 2026.6.1-alpha.1 || 2026.6.1-alpha.2 || 2026.6.1-alpha.3 || 2026.6.1-beta.1 || 2026.6.1-beta.2 || 2026.6.1-beta.3 || 2026.6.2-alpha.1 || 2026.6.2-alpha.2 || 2026.6.2-beta.1 || 2026.6.3-alpha.1 || 2026.6.4-alpha.1 || 2026.6.5-alpha.1 || 2026.6.5-alpha.2 || 2026.6.5-beta.1 || 2026.6.5-beta.2 || 2026.6.6-alpha.1"
|