agentic-flow 2.0.1-alpha.15 → 2.0.1-alpha.16

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.16] - 2025-12-31
6
+
7
+ ### Added
8
+ - **Parallel Intelligence** (ruvector@0.1.62): Full parallel worker integration
9
+ - `queueEpisode()` + `flushEpisodeBatch()` - 3-4x faster batch Q-learning
10
+ - `matchPatternsParallel(files)` - Multi-file parallel pretrain
11
+ - `indexMemoriesBackground(memories)` - Non-blocking hook indexing
12
+ - `searchParallel(query, topK)` - Parallel shard similarity search
13
+ - `analyzeFilesParallel(files)` - Multi-file AST routing
14
+ - `analyzeCommitsParallel(commits)` - Faster co-edit detection
15
+
16
+ - **Auto-detection for parallel mode**:
17
+ - MCP server (`MCP_SERVER=1`): Workers enabled automatically
18
+ - CLI hooks (`RUVECTOR_CLI=1`): Fast sequential mode
19
+ - Manual: `RUVECTOR_PARALLEL=1` to force enable
20
+
21
+ ### Changed
22
+ - Updated ruvector dependency: 0.1.61 → 0.1.62
23
+ - Intelligence bridge now lazy-loads parallel engine
24
+
5
25
  ## [2.0.1-alpha.15] - 2025-12-31
6
26
 
7
27
  ### Added