agenr 0.9.59 → 0.9.61
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 +27 -0
- package/dist/chunk-AU6VYCJM.js +9655 -0
- package/dist/chunk-C36CBRQ7.js +9655 -0
- package/dist/cli-main.d.ts +6 -0
- package/dist/cli-main.js +486 -7
- package/dist/maintain-7ONO5XLM.js +4120 -0
- package/dist/maintain-ZJ7IWT6V.js +4120 -0
- package/package.json +13 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.61] - 2026-03-03
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **Synthetic cold-start signals** (#417 Phase 3): `agenr ingest --bulk --synthetic` now runs a post-ingest cross-session mention analysis pass. Entries that appear across multiple session transcripts receive synthetic recall events so they start with meaningful recall profiles instead of flat zero-history signals.
|
|
8
|
+
- `--synthetic` and `--synthetic-dry-run` flags for `agenr ingest`.
|
|
9
|
+
- Quality score seeding from synthetic recall signals with four tiers (`0.6`, `0.65`, `0.7`, `0.8`) based on distinct session count and temporal spread. Seeding is guarded so only entries still at `quality_score = 0.5` are updated.
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Synthetic event generation writes flat `signal_value = 0.4` per event (frequency is carried by event count), caps ANN fan-out at top-5 neighbors per entry, and uses chunked transaction batches with `INSERT OR IGNORE` idempotency on the existing synthetic dedup index.
|
|
14
|
+
|
|
15
|
+
## 0.9.60 (2026-03-03)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- feat(recall): add Phase 2 scoring switchover to read recall signals from `recall_events` behind `scoring.useRecallEvents` (#417)
|
|
20
|
+
- feat(recall): add batch `RecallMetrics` aggregation (`getRecallMetricsBatch`) with chunked SQL + max-gap window query
|
|
21
|
+
- feat(recall): add `recallStrengthFromMetrics` warm-start blending and live-first recency anchor (`lastLiveRecalledAt` fallback chain)
|
|
22
|
+
- feat(recall): thread metrics-aware scoring through primary recall and cluster/graph/relation expansion paths
|
|
23
|
+
|
|
24
|
+
### Tests
|
|
25
|
+
|
|
26
|
+
- test(recall): add unit coverage for `getRecallMetricsBatch` counts, timestamps, signal sum, max-gap, and chunking
|
|
27
|
+
- test(recall): add unit coverage for metrics-based recall strength, spacing override, and metrics-map scoring behavior
|
|
28
|
+
- test(recall): add integration coverage for `useRecallEvents` on/off behavior, no-events fallback, session-start path, spacing override, and expansion candidates
|
|
29
|
+
|
|
3
30
|
## 0.9.59 (2026-03-03)
|
|
4
31
|
|
|
5
32
|
### Features
|