agenr 0.9.64 → 0.9.67

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 CHANGED
@@ -1,5 +1,56 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.67] - 2026-03-05
4
+
5
+ ### Added
6
+
7
+ - Added hybrid mid-session recall presentation in OpenClaw plugin: inject top matches and surface remaining matches as a `[MEMORY CHECK]` subject summary nudge.
8
+ - Added `midSessionRecall.mode` config with `hybrid` (default), `inject` (legacy), and `nudge` modes.
9
+ - Added `midSessionRecall.injectMax` config (default `2`) to control how many entries are directly injected in hybrid mode.
10
+
11
+ ### Changed
12
+
13
+ - Mid-session recall now defaults to `hybrid` mode instead of injecting all fresh matches.
14
+ - Added nudge suppression when the most recent assistant turn already includes an `agenr_recall` tool call.
15
+
16
+ ## [0.9.66] - 2026-03-04
17
+
18
+ ### Added
19
+
20
+ - Added `agenr recall --index --json` for project-grouped memory index output (`projects`, `totalEntries`).
21
+ - Added `--null-project` as an explicit `agenr recall` filter for NULL-project-only queries.
22
+ - Added OpenClaw plugin memory-index module at `src/openclaw-plugin/memory-index.ts` with dedicated formatter and unit tests.
23
+ - Added pre-store embedding dedup layer for ingest (#474) with 0.90 threshold, sameType gate, event exclusion.
24
+ - Added `survivorEmbeddings` return from pre-store dedup, threaded `EmbeddingCache` through write queue into `storeEntries`.
25
+ - Added `embeddingCache?: EmbeddingCache` to `StoreEntriesOptions`.
26
+
27
+ ### Changed
28
+
29
+ - OpenClaw session-start browse recall now uses stricter universal filters (`--null-project`, `--min-importance 7`) with a 30-day window and a 20-entry cap.
30
+ - OpenClaw session-start memory index is now loaded through `agenr recall --index --json`.
31
+
32
+ ### Fixed
33
+
34
+ - Capped consolidation reflection importance at max source importance (hard cap 8 unless source was 9+) to prevent importance inflation during merges (#472).
35
+ - Added merge prompt guidance: "Merging entries does not make them more important - it makes them more concise."
36
+ - Added retroactive fix to downgrade inflated importance-9 reflections to 7.
37
+ - Fixed consolidate leaving superseded source entries as active; they are now properly retired with reason 'superseded' (#465).
38
+ - Added maintain task to retroactively retire existing superseded-but-active ghost entries.
39
+
40
+ ## [0.9.65] - 2026-03-04
41
+
42
+ ### Added
43
+
44
+ - Added `agenr memory-index --json [--db <path>]` to return a compact project memory index (`project`, `count`, `lastTouched`).
45
+ - Added `--universal-only` to `agenr recall` to filter recall results to NULL-project entries.
46
+ - Added OpenClaw plugin config `sessionStartBudgetChars` (default `12000`) to cap total session-start injected context.
47
+
48
+ ### Changed
49
+
50
+ - Refactored OpenClaw session-start injection to lean mode: handoff context, universal browse recall only (`project IS NULL`, importance >= 7, limit 10), and memory index summary.
51
+ - Removed session-start semantic seed recall and Phase 2 dedup assembly from `before_prompt_build`.
52
+ - Added a strict session-start hard cap with truncation notice so injected context cannot exceed the configured budget.
53
+
3
54
  ## [0.9.64] - 2026-03-04
4
55
 
5
56
  ### Fixed