agentic-flow 1.4.6 → 1.4.8

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.
@@ -0,0 +1,212 @@
1
+ # Release v1.4.7: ReasoningBank CLI Fix
2
+
3
+ ## 🐛 Bug Fix Release
4
+
5
+ This is a critical bug fix release that resolves the ReasoningBank CLI commands not being accessible in the published npm package v1.4.6.
6
+
7
+ ## Issue Summary
8
+
9
+ **Problem:** Users installing `agentic-flow@1.4.6` via npm could not access ReasoningBank CLI commands despite the feature being fully documented and implemented.
10
+
11
+ ```bash
12
+ # This command showed no ReasoningBank section:
13
+ npx agentic-flow@1.4.6 reasoningbank help
14
+ # Output: Only showed standard commands (config, mcp, agent, proxy, claude-code)
15
+ ```
16
+
17
+ **Root Cause:** The v1.4.6 npm package was published before the TypeScript build completed, resulting in incomplete dist/ files being uploaded to npm.
18
+
19
+ ## What's Fixed in v1.4.7
20
+
21
+ ### ✅ ReasoningBank CLI Now Accessible
22
+
23
+ All 5 ReasoningBank commands are now available after installation:
24
+
25
+ ```bash
26
+ npx agentic-flow@1.4.7 reasoningbank help
27
+ npx agentic-flow@1.4.7 reasoningbank demo
28
+ npx agentic-flow@1.4.7 reasoningbank test
29
+ npx agentic-flow@1.4.7 reasoningbank init
30
+ npx agentic-flow@1.4.7 reasoningbank benchmark
31
+ npx agentic-flow@1.4.7 reasoningbank status
32
+ ```
33
+
34
+ ### ✅ Complete Build Process
35
+
36
+ - Clean rebuild with `rm -rf dist/`
37
+ - Full TypeScript compilation completed
38
+ - All 25 ReasoningBank modules compiled to dist/
39
+ - CLI handler properly linked
40
+
41
+ ### ✅ Verified Package Contents
42
+
43
+ The following files are now correctly included in the npm package:
44
+
45
+ **ReasoningBank Core (dist/reasoningbank/):**
46
+ - `core/` - retrieve.js, judge.js, distill.js, consolidate.js, matts.js
47
+ - `db/` - schema.js, queries.js
48
+ - `utils/` - config.js, embeddings.js, mmr.js, pii-scrubber.js
49
+ - `hooks/` - pre-task.js, post-task.js
50
+ - `config/` - reasoningbank-types.js
51
+ - Test files: demo-comparison.js, test-*.js, benchmark.js
52
+ - Main entry: index.js
53
+
54
+ **CLI Integration:**
55
+ - `utils/reasoningbankCommands.js` - Command handlers
56
+ - `utils/cli.js` - Parser with reasoningbank mode
57
+ - `index.js` - Route handler integration
58
+
59
+ ## Installation
60
+
61
+ ```bash
62
+ # Install the fixed version
63
+ npm install -g agentic-flow@1.4.7
64
+
65
+ # Or use npx directly
66
+ npx agentic-flow@1.4.7 reasoningbank help
67
+ ```
68
+
69
+ ## Verification
70
+
71
+ After installation, verify ReasoningBank is accessible:
72
+
73
+ ```bash
74
+ # Should show full ReasoningBank help menu
75
+ npx agentic-flow reasoningbank help
76
+
77
+ # Expected output:
78
+ 🧠 ReasoningBank - Memory System that Learns from Experience
79
+
80
+ USAGE:
81
+ npx agentic-flow reasoningbank <command>
82
+
83
+ COMMANDS:
84
+ demo Run interactive demo showing 0% → 100% success transformation
85
+ test Run comprehensive validation suite (27 tests)
86
+ init Initialize ReasoningBank database (.swarm/memory.db)
87
+ benchmark Run performance benchmarks (retrieval, insertion, etc.)
88
+ status Show memory statistics and database status
89
+ help Show this help message
90
+ ```
91
+
92
+ ## What's Unchanged
93
+
94
+ All features from v1.4.6 remain identical:
95
+
96
+ - ✅ Full ReasoningBank implementation (25 modules)
97
+ - ✅ 4-phase learning loop (RETRIEVE → JUDGE → DISTILL → CONSOLIDATE)
98
+ - ✅ 27/27 tests passing
99
+ - ✅ Performance 2-200x faster than targets
100
+ - ✅ Comprehensive documentation (1,400+ lines)
101
+ - ✅ MaTTS (Memory-aware Test-Time Scaling)
102
+ - ✅ PII scrubbing (9 pattern types)
103
+ - ✅ SQLite database with 6 tables
104
+ - ✅ All other features (66 agents, 213 MCP tools, Agent Booster, etc.)
105
+
106
+ ## Migration from v1.4.6
107
+
108
+ No code changes needed - simply upgrade:
109
+
110
+ ```bash
111
+ npm install -g agentic-flow@latest
112
+ ```
113
+
114
+ ## Technical Details
115
+
116
+ ### Build Process Changes
117
+
118
+ **Before (v1.4.6 - Broken):**
119
+ ```bash
120
+ # Package published before build completed
121
+ npm version 1.4.6
122
+ npm publish # ❌ dist/ incomplete
123
+ ```
124
+
125
+ **After (v1.4.7 - Fixed):**
126
+ ```bash
127
+ # Proper build sequence
128
+ rm -rf dist/ # Clean slate
129
+ npm run build # Full TypeScript compilation
130
+ npm version 1.4.7 # Bump version
131
+ npm publish # ✅ Complete dist/ included
132
+ ```
133
+
134
+ ### Package.json Updates
135
+
136
+ ```json
137
+ {
138
+ "version": "1.4.6" → "1.4.7",
139
+ "bin": {
140
+ "agentic-flow": "dist/cli-proxy.js" // Ensures CLI accessible
141
+ },
142
+ "files": [
143
+ "dist", // ✅ Includes all compiled files
144
+ "docs",
145
+ ".claude",
146
+ "validation",
147
+ "scripts",
148
+ "README.md",
149
+ "LICENSE",
150
+ "VALIDATION-RESULTS.md",
151
+ "CHANGELOG.md"
152
+ ],
153
+ "scripts": {
154
+ "prepublishOnly": "npm run build" // Auto-build before publish
155
+ }
156
+ }
157
+ ```
158
+
159
+ ## Affected Users
160
+
161
+ **Who should upgrade:**
162
+ - Anyone who installed `agentic-flow@1.4.6` and couldn't access `reasoningbank` commands
163
+ - Users who saw "command not found" errors for ReasoningBank CLI
164
+ - Anyone following the v1.4.6 release documentation
165
+
166
+ **Who is not affected:**
167
+ - Users who built from source
168
+ - Users only using the programmatic API (TypeScript/JavaScript)
169
+ - Users who didn't attempt to use ReasoningBank CLI
170
+
171
+ ## Future Improvements
172
+
173
+ To prevent similar issues in future releases:
174
+
175
+ 1. ✅ `prepublishOnly` script ensures build runs before publish
176
+ 2. ✅ Add CI/CD checks to verify dist/ completeness
177
+ 3. ✅ Add smoke tests for CLI commands after build
178
+ 4. ✅ Document build verification steps in CONTRIBUTING.md
179
+
180
+ ## Related Documentation
181
+
182
+ - **Full ReasoningBank Guide**: [v1.4.6 Release Notes](./v1.4.6-reasoningbank-release.md)
183
+ - **GitHub Issue**: [Issue #14](https://github.com/ruvnet/agentic-flow/issues/14)
184
+ - **ReasoningBank README**: [src/reasoningbank/README.md](../../src/reasoningbank/README.md)
185
+ - **Demo Report**: [docs/REASONINGBANK-DEMO.md](../../docs/REASONINGBANK-DEMO.md)
186
+
187
+ ## Changelog
188
+
189
+ ### Fixed
190
+ - 🐛 **ReasoningBank CLI commands** now accessible after npm install
191
+ - 🐛 **Complete dist/ build** included in published package
192
+ - 🐛 **CLI parser** properly routes reasoningbank commands
193
+
194
+ ### Changed
195
+ - 📦 **Version**: `1.4.6` → `1.4.7`
196
+ - 🔧 **Build process**: Added clean rebuild before publish
197
+
198
+ ### Verified
199
+ - ✅ All 5 ReasoningBank CLI commands working
200
+ - ✅ Help menu displays correctly
201
+ - ✅ 25 ReasoningBank modules compiled and included
202
+ - ✅ No breaking changes to existing functionality
203
+
204
+ ---
205
+
206
+ **Apologies for the inconvenience caused by v1.4.6. Version 1.4.7 is fully functional and ready to use!** 🚀
207
+
208
+ Install now:
209
+ ```bash
210
+ npm install -g agentic-flow@latest
211
+ npx agentic-flow reasoningbank demo
212
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-flow",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",