@oh-my-pi/omp-stats 16.3.7 → 16.3.9
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 +10 -0
- package/dist/client/index.js +1 -1
- package/dist/types/types.d.ts +2 -2
- package/dist/types/user-metrics.d.ts +14 -5
- package/package.json +4 -4
- package/src/client/routes/BehaviorRoute.tsx +3 -3
- package/src/db.ts +23 -1
- package/src/types.ts +2 -2
- package/src/user-metrics.ts +78 -68
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.3.9] - 2026-07-06
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Refined behavior metrics to significantly reduce false positives in profanity, yelling, and anguish detection by excluding technical terms (e.g., "dummy", "trash", "garbage"), neutral punctuation (e.g., dot runs), and single-word capitalization (e.g., filenames or environment variables).
|
|
10
|
+
- Re-categorized frustration interjections (such as "ugh", "argh", and "grr") from profanity to anguish.
|
|
11
|
+
- Improved negation and blame detection to exclude determiners (e.g., "no auto start") and compounds (e.g., "no-op") while adding support for phrases like "why did you" and "makes no sense".
|
|
12
|
+
- Added sad emoticons as a signal for anguish while excluding code-like patterns.
|
|
13
|
+
- Triggered a one-time automatic re-ingestion of sessions on the next database sync to apply the updated metrics.
|
|
14
|
+
|
|
5
15
|
## [16.3.7] - 2026-07-05
|
|
6
16
|
|
|
7
17
|
### Changed
|