@blueharford/scrypted-spatial-awareness 0.6.32 → 0.6.33

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/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ ## 0.6.33 - 2026-01-23
4
+
5
+ ### Added
6
+ - Optional notifications on alert updates with cooldown control.
7
+ - Minimum detection confidence setting to reduce noise.
8
+ - Alert update coalescing to keep one alert per object.
9
+ - Debounced tracking state persistence and periodic cleanup for efficiency.
10
+
11
+ ### Changed
12
+ - Movement alerts now update in place during cooldown instead of creating new alerts.
13
+ - Reused cached snapshots for notifications when available.
14
+ - LLM rate limiting is skipped when LLM is disabled.
15
+
16
+ ### Fixed
17
+ - Avoided stale loitering alerts after cross-camera transitions.
18
+ - Cancelled pending loitering timers on exits and lost tracking.
package/README.md CHANGED
@@ -134,10 +134,13 @@ With proper landmarks, alerts become rich and contextual:
134
134
  | Setting | Default | Description |
135
135
  |---------|---------|-------------|
136
136
  | Correlation Window | 30s | Max time for cross-camera matching |
137
- | Correlation Threshold | 0.6 | Min confidence for auto-correlation |
137
+ | Correlation Threshold | 0.35 | Min confidence for auto-correlation |
138
138
  | Loitering Threshold | 3s | Time before triggering alerts |
139
+ | Minimum Detection Confidence | 0.5 | Ignore detections below this score |
139
140
  | Per-Object Cooldown | 30s | Min time between alerts for same object |
140
- | LLM Rate Limit | 10s | Min time between LLM API calls |
141
+ | Notify on Alert Updates | Off | Send notifications when an existing alert updates |
142
+ | Alert Update Cooldown | 60s | Min time between update notifications |
143
+ | LLM Rate Limit | 5s | Min time between LLM API calls |
141
144
 
142
145
  ### Alert Types
143
146