@joshuaswarren/openclaw-engram 9.3.629 → 9.3.630
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 +33 -10
- 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.630",
|
|
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,12 +805,12 @@
|
|
|
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
816
|
"corrections": {
|
|
@@ -887,10 +887,32 @@
|
|
|
887
887
|
"enum": [
|
|
888
888
|
"off",
|
|
889
889
|
"review",
|
|
890
|
-
"auto"
|
|
890
|
+
"auto",
|
|
891
|
+
"smart"
|
|
891
892
|
],
|
|
892
|
-
"default": "
|
|
893
|
-
"description": "Memory creation trust gate: off = transcripts only; review =
|
|
893
|
+
"default": "smart",
|
|
894
|
+
"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."
|
|
895
|
+
},
|
|
896
|
+
"sourceTrust": {
|
|
897
|
+
"type": "number",
|
|
898
|
+
"minimum": 0,
|
|
899
|
+
"maximum": 1,
|
|
900
|
+
"default": 0.8,
|
|
901
|
+
"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."
|
|
902
|
+
},
|
|
903
|
+
"autoApproveTrust": {
|
|
904
|
+
"type": "number",
|
|
905
|
+
"minimum": 0,
|
|
906
|
+
"maximum": 1,
|
|
907
|
+
"default": 0.7,
|
|
908
|
+
"description": "Smart mode: trust score at/above which facts are written active."
|
|
909
|
+
},
|
|
910
|
+
"reviewTrust": {
|
|
911
|
+
"type": "number",
|
|
912
|
+
"minimum": 0,
|
|
913
|
+
"maximum": 1,
|
|
914
|
+
"default": 0.45,
|
|
915
|
+
"description": "Smart mode: trust score at/above which borderline facts are queued for review instead of dropped. Must be below autoApproveTrust."
|
|
894
916
|
},
|
|
895
917
|
"minConfidence": {
|
|
896
918
|
"type": "number",
|
|
@@ -915,17 +937,18 @@
|
|
|
915
937
|
"type": "integer",
|
|
916
938
|
"minimum": 0,
|
|
917
939
|
"maximum": 500,
|
|
918
|
-
"default":
|
|
940
|
+
"default": 50,
|
|
919
941
|
"description": "Cap on memories created per source per day. Set to 0 to disable the cap."
|
|
920
942
|
},
|
|
921
943
|
"importNativeMemories": {
|
|
922
944
|
"type": "string",
|
|
923
945
|
"enum": [
|
|
924
946
|
"off",
|
|
925
|
-
"review"
|
|
947
|
+
"review",
|
|
948
|
+
"smart"
|
|
926
949
|
],
|
|
927
|
-
"default": "
|
|
928
|
-
"description": "Import provider-extracted memories (Bee facts / Omi memories)
|
|
950
|
+
"default": "smart",
|
|
951
|
+
"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
952
|
},
|
|
930
953
|
"cleanup": {
|
|
931
954
|
"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.630",
|
|
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.630",
|
|
55
|
+
"@remnic/core": "^9.3.630"
|
|
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"
|