agenr 0.9.41 → 0.9.42

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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.42 (2026-03-02)
4
+
5
+ ### Features
6
+ - **Periodic reflection and synthesis** (#269): New `reflection` maintain task that
7
+ synthesizes clusters of related entries into higher-level reflections using
8
+ two-step LLM prompting (question generation + synthesis) with a verification pass.
9
+ Source entries are importance-demoted (not retired) so raw knowledge remains
10
+ accessible. Co-recall edges are transferred to reflection entries for graph
11
+ continuity.
12
+ - New entry type: `reflection` for synthesized knowledge
13
+ - New `reflections` table for process metadata
14
+ - Extended `entry_sources` with `action` column for unified provenance tracking
15
+ - New `--full` flag for full-brain reflection (ignores change detection)
16
+ - Configurable: reflection model, verification model, coverage threshold, demotion
17
+ amount, importance threshold, cluster size minimum
18
+ - Re-synthesis guards: minimum cumulative importance threshold for changed entries
19
+
20
+ ### Bug Fixes
21
+ - Fix parseSynthesisResponse bailing on first JSON candidate instead of trying alternatives
22
+ - Fix verification prompt missing explicit check instructions
23
+ - Fix demoteEntryImportance/retireReflectionEntry using wall clock instead of injected time
24
+ - Fix transferCoRecallEdges silently dropping stronger edges (now uses MAX weight)
25
+ - Fix verification ignoring the verified boolean (only checked coverage_score)
26
+ - Extract shared JSON parsing utilities to reduce duplication
27
+ - Add cluster churn detection for re-synthesis safety
28
+
3
29
  ## 0.9.41 - 2026-03-01
4
30
 
5
31
  ### Fixed