agentic-flow 2.0.1-alpha.12 → 2.0.1-alpha.13

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
@@ -2,6 +2,26 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.0.1-alpha.13] - 2025-12-31
6
+
7
+ ### Added
8
+ - **SQLite Persistence**: Learning data now persists across npx calls and CLI invocations
9
+ - New `IntelligenceStore` class with cross-platform SQLite (better-sqlite3)
10
+ - Stores trajectories, routings, patterns, and operations
11
+ - Works on Linux, macOS, and Windows
12
+ - Database stored in `.agentic-flow/intelligence.db`
13
+
14
+ ### Changed
15
+ - **Intelligence Stats**: Now shows persisted data from SQLite
16
+ - Trajectories count persists across CLI invocations
17
+ - Routings count persists across CLI invocations
18
+ - New "Persistence (SQLite)" section in stats output
19
+
20
+ ### Verified
21
+ - Trajectories persist: created in one call, visible in next
22
+ - Routings persist: recorded for each routing decision
23
+ - Cross-platform SQLite with WAL mode for better concurrency
24
+
5
25
  ## [2.0.1-alpha.12] - 2025-12-31
6
26
 
7
27
  ### Fixed