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 +20 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/commands/hooks.d.ts.map +1 -1
- package/dist/cli/commands/hooks.js +6 -1
- package/dist/cli/commands/hooks.js.map +1 -1
- package/dist/intelligence/IntelligenceStore.d.ts +168 -0
- package/dist/intelligence/IntelligenceStore.d.ts.map +1 -0
- package/dist/intelligence/IntelligenceStore.js +364 -0
- package/dist/intelligence/IntelligenceStore.js.map +1 -0
- package/dist/mcp/fastmcp/tools/hooks/intelligence-bridge.d.ts +13 -0
- package/dist/mcp/fastmcp/tools/hooks/intelligence-bridge.d.ts.map +1 -1
- package/dist/mcp/fastmcp/tools/hooks/intelligence-bridge.js +36 -5
- package/dist/mcp/fastmcp/tools/hooks/intelligence-bridge.js.map +1 -1
- package/dist/mcp/fastmcp/tools/hooks/intelligence-tools.d.ts.map +1 -1
- package/dist/mcp/fastmcp/tools/hooks/intelligence-tools.js +8 -0
- package/dist/mcp/fastmcp/tools/hooks/intelligence-tools.js.map +1 -1
- package/package.json +1 -1
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
|