@joshuaswarren/openclaw-engram 9.3.623 → 9.3.628

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.623",
4
+ "version": "9.3.628",
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": {
@@ -775,6 +775,190 @@
775
775
  }
776
776
  }
777
777
  },
778
+ "wearables": {
779
+ "type": "object",
780
+ "additionalProperties": false,
781
+ "default": {},
782
+ "description": "Wearable transcript ingestion (Limitless / Bee / Omi). Connector packages install a la carte: @remnic/connector-limitless, @remnic/connector-bee, @remnic/connector-omi. See docs/wearables.md.",
783
+ "properties": {
784
+ "enabled": {
785
+ "type": "boolean",
786
+ "default": false,
787
+ "description": "Master gate for the wearables subsystem."
788
+ },
789
+ "timezone": {
790
+ "type": "string",
791
+ "description": "IANA timezone used to bucket transcripts into days. Defaults to the host timezone."
792
+ },
793
+ "redactionEnabled": {
794
+ "type": "boolean",
795
+ "default": true,
796
+ "description": "Redact SSN / payment-card patterns from transcripts before storage and extraction."
797
+ },
798
+ "redactionPatterns": {
799
+ "type": "array",
800
+ "items": {
801
+ "type": "string"
802
+ },
803
+ "default": [],
804
+ "description": "Additional user-supplied redaction regexes (validated at config load)."
805
+ },
806
+ "offTheRecordEnabled": {
807
+ "type": "boolean",
808
+ "default": false,
809
+ "description": "Honor a spoken 'off the record' marker by eliding segments until 'back on the record'."
810
+ },
811
+ "digestEnabled": {
812
+ "type": "boolean",
813
+ "default": false,
814
+ "description": "Write one compact daily-digest memory per synced source/day."
815
+ },
816
+ "corrections": {
817
+ "type": "array",
818
+ "default": [],
819
+ "description": "User-specific transcript correction rules applied on every sync (merged with CLI-managed rules).",
820
+ "items": {
821
+ "type": "object",
822
+ "additionalProperties": false,
823
+ "required": [
824
+ "match",
825
+ "replace"
826
+ ],
827
+ "properties": {
828
+ "match": {
829
+ "type": "string",
830
+ "description": "Text (or regex when regex=true) to match."
831
+ },
832
+ "replace": {
833
+ "type": "string",
834
+ "description": "Replacement text."
835
+ },
836
+ "regex": {
837
+ "type": "boolean",
838
+ "default": false,
839
+ "description": "Treat match as a regular expression."
840
+ },
841
+ "caseInsensitive": {
842
+ "type": "boolean",
843
+ "default": true,
844
+ "description": "Case-insensitive matching."
845
+ },
846
+ "sources": {
847
+ "type": "array",
848
+ "items": {
849
+ "type": "string"
850
+ },
851
+ "description": "Restrict the rule to specific source ids."
852
+ }
853
+ }
854
+ }
855
+ },
856
+ "sources": {
857
+ "type": "object",
858
+ "default": {},
859
+ "description": "Per-source settings keyed by connector id (limitless, bee, omi, or a custom connector id).",
860
+ "additionalProperties": {
861
+ "type": "object",
862
+ "additionalProperties": false,
863
+ "properties": {
864
+ "enabled": {
865
+ "type": "boolean",
866
+ "default": false,
867
+ "description": "Enable syncing from this wearable source."
868
+ },
869
+ "apiKey": {
870
+ "type": "string",
871
+ "description": "Provider API credential. Prefer the per-connector environment variable (e.g. ${LIMITLESS_API_KEY}); a config value takes precedence when both are set."
872
+ },
873
+ "baseUrl": {
874
+ "type": "string",
875
+ "description": "Override the provider base URL (self-hosted / local-proxy setups, e.g. the Bee local proxy)."
876
+ },
877
+ "appId": {
878
+ "type": "string",
879
+ "description": "Omi only: integration app id (the {app_id} path component of the Omi Integrations API)."
880
+ },
881
+ "userId": {
882
+ "type": "string",
883
+ "description": "Omi only: target user id supplied as the uid query parameter."
884
+ },
885
+ "memoryMode": {
886
+ "type": "string",
887
+ "enum": [
888
+ "off",
889
+ "review",
890
+ "auto"
891
+ ],
892
+ "default": "review",
893
+ "description": "Memory creation trust gate: off = transcripts only; review = extracted candidates land as pending_review (default); auto = gated candidates are written active."
894
+ },
895
+ "minConfidence": {
896
+ "type": "number",
897
+ "minimum": 0,
898
+ "maximum": 1,
899
+ "default": 0.6,
900
+ "description": "Drop extracted facts below this confidence."
901
+ },
902
+ "minImportance": {
903
+ "type": "string",
904
+ "enum": [
905
+ "trivial",
906
+ "low",
907
+ "normal",
908
+ "high",
909
+ "critical"
910
+ ],
911
+ "default": "low",
912
+ "description": "Drop extracted facts scored below this importance level."
913
+ },
914
+ "maxMemoriesPerDay": {
915
+ "type": "integer",
916
+ "minimum": 0,
917
+ "maximum": 500,
918
+ "default": 20,
919
+ "description": "Cap on memories created per source per day. Set to 0 to disable the cap."
920
+ },
921
+ "importNativeMemories": {
922
+ "type": "string",
923
+ "enum": [
924
+ "off",
925
+ "review"
926
+ ],
927
+ "default": "off",
928
+ "description": "Import provider-extracted memories (Bee facts / Omi memories) into the review queue."
929
+ },
930
+ "cleanup": {
931
+ "type": "object",
932
+ "additionalProperties": false,
933
+ "default": {},
934
+ "properties": {
935
+ "mergeSameSpeaker": {
936
+ "type": "boolean",
937
+ "default": true,
938
+ "description": "Merge consecutive same-speaker segments."
939
+ },
940
+ "stripFillers": {
941
+ "type": "boolean",
942
+ "default": true,
943
+ "description": "Strip standalone filler tokens (um, uh, ...)."
944
+ },
945
+ "collapseRepeats": {
946
+ "type": "boolean",
947
+ "default": true,
948
+ "description": "Collapse immediately repeated phrases (ASR stutter)."
949
+ },
950
+ "dropLowQuality": {
951
+ "type": "boolean",
952
+ "default": true,
953
+ "description": "Drop segments that look like ASR garbage."
954
+ }
955
+ }
956
+ }
957
+ }
958
+ }
959
+ }
960
+ }
961
+ },
778
962
  "secureStoreEnabled": {
779
963
  "type": "boolean",
780
964
  "default": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joshuaswarren/openclaw-engram",
3
- "version": "9.3.623",
3
+ "version": "9.3.628",
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.623",
55
- "@remnic/core": "^9.3.623"
54
+ "@remnic/plugin-openclaw": "^9.3.628",
55
+ "@remnic/core": "^9.3.628"
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"