claude-flow 2.7.33 → 2.7.34

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.
Files changed (79) hide show
  1. package/.claude/settings.local.json +9 -2
  2. package/.claude/skills/agentic-jujutsu/SKILL.md +1 -1
  3. package/CHANGELOG.md +75 -0
  4. package/bin/claude-flow +1 -1
  5. package/dist/src/cli/commands/mcp.js +61 -7
  6. package/dist/src/cli/commands/mcp.js.map +1 -1
  7. package/dist/src/cli/help-formatter.js +5 -0
  8. package/dist/src/cli/simple-commands/init/agent-copier.js +9 -3
  9. package/dist/src/cli/simple-commands/init/agent-copier.js.map +1 -1
  10. package/dist/src/core/version.js +1 -1
  11. package/dist/src/mcp/async/job-manager-mcp25.js +240 -0
  12. package/dist/src/mcp/async/job-manager-mcp25.js.map +1 -0
  13. package/dist/src/mcp/index.js +8 -0
  14. package/dist/src/mcp/index.js.map +1 -1
  15. package/dist/src/mcp/protocol/version-negotiation.js +182 -0
  16. package/dist/src/mcp/protocol/version-negotiation.js.map +1 -0
  17. package/dist/src/mcp/registry/mcp-registry-client-2025.js +210 -0
  18. package/dist/src/mcp/registry/mcp-registry-client-2025.js.map +1 -0
  19. package/dist/src/mcp/server-factory.js +189 -0
  20. package/dist/src/mcp/server-factory.js.map +1 -0
  21. package/dist/src/mcp/server-mcp-2025.js +283 -0
  22. package/dist/src/mcp/server-mcp-2025.js.map +1 -0
  23. package/dist/src/mcp/tool-registry-progressive.js +319 -0
  24. package/dist/src/mcp/tool-registry-progressive.js.map +1 -0
  25. package/dist/src/mcp/tools/_template.js +62 -0
  26. package/dist/src/mcp/tools/_template.js.map +1 -0
  27. package/dist/src/mcp/tools/loader.js +228 -0
  28. package/dist/src/mcp/tools/loader.js.map +1 -0
  29. package/dist/src/mcp/tools/system/search.js +224 -0
  30. package/dist/src/mcp/tools/system/search.js.map +1 -0
  31. package/dist/src/mcp/tools/system/status.js +168 -0
  32. package/dist/src/mcp/tools/system/status.js.map +1 -0
  33. package/dist/src/mcp/validation/schema-validator-2025.js +198 -0
  34. package/dist/src/mcp/validation/schema-validator-2025.js.map +1 -0
  35. package/docs/.claude-flow/metrics/performance.json +3 -3
  36. package/docs/.claude-flow/metrics/task-metrics.json +3 -3
  37. package/docs/.github-release-issue-v2.7.33.md +488 -0
  38. package/docs/AGENTDB_BRANCH_MERGE_VERIFICATION.md +436 -0
  39. package/docs/BRANCH_REVIEW_SUMMARY.md +439 -0
  40. package/docs/DEEP_CODE_REVIEW_v2.7.33.md +1159 -0
  41. package/docs/MCP_2025_FEATURE_CONFIRMATION.md +698 -0
  42. package/docs/NPM_PUBLISH_GUIDE_v2.7.33.md +628 -0
  43. package/docs/REGRESSION_TEST_REPORT_v2.7.33.md +397 -0
  44. package/docs/RELEASE_NOTES_v2.7.33.md +618 -0
  45. package/docs/RELEASE_READINESS_SUMMARY.md +377 -0
  46. package/docs/RELEASE_SUMMARY_v2.7.33.md +456 -0
  47. package/docs/agentic-flow-agentdb-mcp-integration.md +1198 -0
  48. package/docs/mcp-2025-implementation-summary.md +459 -0
  49. package/docs/mcp-spec-2025-implementation-plan.md +1330 -0
  50. package/docs/phase-1-2-implementation-summary.md +676 -0
  51. package/docs/regression-analysis-phase-1-2.md +555 -0
  52. package/package.json +5 -2
  53. package/src/cli/commands/mcp.ts +86 -9
  54. package/src/cli/simple-commands/init/agent-copier.js +10 -5
  55. package/src/mcp/async/job-manager-mcp25.ts +456 -0
  56. package/src/mcp/index.ts +60 -0
  57. package/src/mcp/protocol/version-negotiation.ts +329 -0
  58. package/src/mcp/registry/mcp-registry-client-2025.ts +334 -0
  59. package/src/mcp/server-factory.ts +426 -0
  60. package/src/mcp/server-mcp-2025.ts +507 -0
  61. package/src/mcp/tool-registry-progressive.ts +539 -0
  62. package/src/mcp/tools/_template.ts +174 -0
  63. package/src/mcp/tools/loader.ts +362 -0
  64. package/src/mcp/tools/system/search.ts +276 -0
  65. package/src/mcp/tools/system/status.ts +206 -0
  66. package/src/mcp/validation/schema-validator-2025.ts +294 -0
  67. package/docs/AGENTDB_V1.6.1_DEEP_REVIEW.md +0 -386
  68. package/docs/AGENT_FOLDER_STRUCTURE_FIX.md +0 -192
  69. package/docs/RECENT_RELEASES_SUMMARY.md +0 -375
  70. package/docs/V2.7.31_RELEASE_NOTES.md +0 -375
  71. /package/.claude/agents/analysis/{analyze-code-quality.md → code-review/analyze-code-quality.md} +0 -0
  72. /package/.claude/agents/architecture/{arch-system-design.md → system-design/arch-system-design.md} +0 -0
  73. /package/.claude/agents/data/{data-ml-model.md → ml/data-ml-model.md} +0 -0
  74. /package/.claude/agents/development/{dev-backend-api.md → backend/dev-backend-api.md} +0 -0
  75. /package/.claude/agents/devops/{ops-cicd-github.md → ci-cd/ops-cicd-github.md} +0 -0
  76. /package/.claude/agents/documentation/{docs-api-openapi.md → api-docs/docs-api-openapi.md} +0 -0
  77. /package/.claude/agents/specialized/{spec-mobile-react-native.md → mobile/spec-mobile-react-native.md} +0 -0
  78. /package/.claude/agents/testing/{tdd-london-swarm.md → unit/tdd-london-swarm.md} +0 -0
  79. /package/.claude/agents/testing/{production-validator.md → validation/production-validator.md} +0 -0
@@ -1,375 +0,0 @@
1
- # claude-flow Recent Releases Summary
2
-
3
- **Last Updated**: 2025-11-06
4
- **Latest Version**: v2.7.31
5
-
6
- ---
7
-
8
- ## 📊 Release Overview
9
-
10
- | Version | Date | Type | Focus | Risk | Status |
11
- |---------|------|------|-------|------|--------|
12
- | **2.7.31** | 2025-11-06 | Dependency | agentic-flow v1.9.4 | LOW | ✅ Current |
13
- | **2.7.30** | 2025-11-06 | Dependency | agentdb v1.6.1 | LOW | ✅ Stable |
14
- | **2.7.29** | 2025-11-06 | Critical Fix | Remove invalid deps | HIGH | ✅ Fixed |
15
- | **2.7.28** | 2025-11-05 | Bug Fix | CLI & dependencies | MEDIUM | ✅ Fixed |
16
- | **2.7.27** | 2025-11-05 | Feature | Fix agent spawning | MEDIUM | ✅ Fixed |
17
-
18
- ---
19
-
20
- ## 🎯 v2.7.31 - Current Release (2025-11-06)
21
-
22
- ### Focus: Enterprise Features via agentic-flow v1.9.4
23
-
24
- **What Changed**:
25
- - Updated agentic-flow from `^1.8.10` to `^1.9.4`
26
- - Added Supabase cloud integration (`@supabase/supabase-js@^2.78.0`)
27
- - Enterprise provider fallback with automatic failover
28
- - Circuit breaker and reliability improvements
29
-
30
- **Key Features**:
31
- - ✨ Provider fallback: Gemini → Claude → OpenRouter → ONNX
32
- - ✨ Supabase cloud database integration
33
- - ✨ Checkpointing for crash recovery
34
- - ✨ Budget controls and cost tracking
35
- - ✨ Real-time health monitoring
36
-
37
- **Testing**:
38
- - ✅ 8/8 Docker regression tests passed
39
- - ✅ agentdb v1.6.1 stable (no regression)
40
- - ✅ All CLI commands functional
41
-
42
- **Impact**: LOW - Safe upgrade, full backwards compatibility
43
-
44
- **Installation**:
45
- ```bash
46
- npm install -g claude-flow@latest
47
- claude-flow --version # v2.7.31
48
- ```
49
-
50
- **Documentation**: `docs/V2.7.31_RELEASE_NOTES.md`
51
-
52
- ---
53
-
54
- ## 📦 v2.7.30 - agentdb Update (2025-11-06)
55
-
56
- ### Focus: Vector Database Performance
57
-
58
- **What Changed**:
59
- - Updated agentdb from `^1.3.9` to `^1.6.1`
60
- - 150x faster vector search with HNSW indexing
61
- - Better Node.js 20+ compatibility
62
- - Improved SQLite backend
63
-
64
- **Key Features**:
65
- - ✨ HNSW (Hierarchical Navigable Small World) indexing
66
- - ✨ Native hnswlib-node for C++ performance
67
- - ✨ Better ReasoningBank initialization
68
- - ✨ Enhanced semantic memory search
69
-
70
- **Testing**:
71
- - ✅ Comprehensive Docker test suite created
72
- - ✅ Memory storage and retrieval validated
73
- - ✅ Vector search benchmarks excellent
74
-
75
- **Impact**: LOW - Performance improvement, no breaking changes
76
-
77
- **Documentation**: `docs/AGENTDB_V1.6.1_DEEP_REVIEW.md`
78
-
79
- ---
80
-
81
- ## 🔴 v2.7.29 - Critical Dependency Fix (2025-11-06)
82
-
83
- ### Focus: Fix Installation Blocker
84
-
85
- **What Changed**:
86
- - Removed `@xenova/transformers@^3.2.0` (doesn't exist)
87
- - Removed `onnxruntime-node` (optional)
88
- - Fixed npm install failures for all users
89
-
90
- **Problem Solved**:
91
- ```
92
- ❌ npm error Could not resolve dependency:
93
- ❌ npm error optional @xenova/transformers@"^3.2.0"
94
-
95
- ✅ Fixed: Versions 2.7.24-2.7.28 were broken
96
- ✅ Impact: All users could install again
97
- ```
98
-
99
- **Testing**:
100
- - ✅ Docker validation passed
101
- - ✅ NPX installation working
102
- - ✅ Global install functional
103
-
104
- **Impact**: CRITICAL - Fixed broken installations
105
-
106
- **Note**: Users on v2.7.24-v2.7.28 should immediately upgrade to v2.7.29+
107
-
108
- ---
109
-
110
- ## 🐛 v2.7.28 - CLI & Dependency Fixes (2025-11-05)
111
-
112
- ### Focus: CLI Improvements
113
-
114
- **What Changed**:
115
- - Fixed CLI help command display
116
- - Updated ruv-swarm to `^1.0.14`
117
- - Improved error messages
118
- - Better NPX compatibility
119
-
120
- **Key Fixes**:
121
- - ✅ `claude-flow --help` now works correctly
122
- - ✅ Swarm coordination more reliable
123
- - ✅ Better error handling
124
-
125
- **Impact**: MEDIUM - Important CLI usability improvements
126
-
127
- ---
128
-
129
- ## 🔧 v2.7.27 - Agent Spawning Fix (2025-11-05)
130
-
131
- ### Focus: Parallel Agent Execution
132
-
133
- **What Changed**:
134
- - Fixed agent spawning in swarm coordination
135
- - Improved parallel execution
136
- - Better task orchestration
137
-
138
- **Key Fixes**:
139
- - ✅ Multiple agents can spawn concurrently
140
- - ✅ Hierarchical coordination working
141
- - ✅ Mesh topology functional
142
-
143
- **Impact**: MEDIUM - Important for multi-agent workflows
144
-
145
- ---
146
-
147
- ## 📈 Cumulative Improvements (v2.7.27 → v2.7.31)
148
-
149
- ### Dependency Updates
150
- ```
151
- agentic-flow: 1.8.10 → 1.9.4 (Enterprise features)
152
- agentdb: 1.3.9 → 1.6.1 (150x faster search)
153
- ruv-swarm: 1.0.13 → 1.0.14 (Better coordination)
154
- ```
155
-
156
- ### New Features Added
157
- 1. **Enterprise Provider Fallback** (v2.7.31)
158
- - Automatic failover across providers
159
- - Circuit breaker for reliability
160
- - Cost optimization (70% savings)
161
-
162
- 2. **Supabase Cloud Integration** (v2.7.31)
163
- - Distributed agent coordination
164
- - Real-time synchronization
165
- - Cloud-backed persistence
166
-
167
- 3. **Checkpointing & Recovery** (v2.7.31)
168
- - Automatic crash recovery
169
- - State persistence
170
- - Resume from failure
171
-
172
- 4. **HNSW Vector Search** (v2.7.30)
173
- - 150x faster approximate search
174
- - Native C++ implementation
175
- - Scalable to millions of vectors
176
-
177
- 5. **ReasoningBank Improvements** (v2.7.30)
178
- - Better SQLite backend
179
- - Enhanced pattern storage
180
- - Improved memory retrieval
181
-
182
- ### Bugs Fixed
183
- - ✅ Installation blocker (v2.7.29)
184
- - ✅ CLI help display (v2.7.28)
185
- - ✅ Agent spawning (v2.7.27)
186
- - ✅ NPX compatibility (v2.7.28-29)
187
-
188
- ---
189
-
190
- ## 🔍 Version Comparison Matrix
191
-
192
- | Feature | v2.7.27 | v2.7.30 | v2.7.31 |
193
- |---------|---------|---------|---------|
194
- | agentic-flow | 1.8.10 | 1.8.10 | **1.9.4** ✨ |
195
- | agentdb | 1.3.9 | **1.6.1** ✨ | 1.6.1 |
196
- | HNSW Search | ❌ | **✅** | ✅ |
197
- | Provider Fallback | ❌ | ❌ | **✅** ✨ |
198
- | Supabase | ❌ | ❌ | **✅** ✨ |
199
- | Checkpointing | ❌ | ❌ | **✅** ✨ |
200
- | Budget Controls | ❌ | ❌ | **✅** ✨ |
201
- | Installation Works | ❌ (fixed 2.7.29) | ✅ | ✅ |
202
- | CLI Help Works | ❌ (fixed 2.7.28) | ✅ | ✅ |
203
- | Agent Spawning | ❌ (fixed 2.7.27) | ✅ | ✅ |
204
-
205
- ---
206
-
207
- ## 📊 Risk Assessment by Version
208
-
209
- ### v2.7.31 (Latest)
210
- - **Risk**: LOW ✅
211
- - **Stability**: Excellent
212
- - **Backwards Compatibility**: Full
213
- - **Recommended**: ✅ Yes, for all users
214
-
215
- ### v2.7.30
216
- - **Risk**: LOW ✅
217
- - **Stability**: Excellent
218
- - **Backwards Compatibility**: Full
219
- - **Recommended**: ⚠️ Upgrade to v2.7.31 for new features
220
-
221
- ### v2.7.29
222
- - **Risk**: LOW ✅
223
- - **Stability**: Good
224
- - **Backwards Compatibility**: Full
225
- - **Recommended**: ⚠️ Upgrade to v2.7.31
226
-
227
- ### v2.7.28 and Earlier
228
- - **Risk**: HIGH ❌
229
- - **Stability**: Broken installations
230
- - **Recommended**: ❌ IMMEDIATE upgrade to v2.7.31
231
-
232
- ---
233
-
234
- ## 🚀 Upgrade Paths
235
-
236
- ### From v2.7.30 → v2.7.31
237
- **Recommended**: ✅ Straightforward upgrade
238
- ```bash
239
- npm install -g claude-flow@latest
240
- ```
241
- **Changes**: New features, no breaking changes
242
-
243
- ### From v2.7.29 → v2.7.31
244
- **Recommended**: ✅ Safe upgrade
245
- ```bash
246
- npm install -g claude-flow@latest
247
- ```
248
- **Changes**: agentdb + agentic-flow updates
249
-
250
- ### From v2.7.28 or Earlier → v2.7.31
251
- **Recommended**: ⚠️ CRITICAL - Upgrade immediately
252
- ```bash
253
- # Uninstall old version
254
- npm uninstall -g claude-flow
255
-
256
- # Install latest
257
- npm install -g claude-flow@latest
258
-
259
- # Verify
260
- claude-flow --version # Should show v2.7.31
261
- ```
262
- **Changes**: Many fixes and improvements
263
-
264
- ---
265
-
266
- ## 🧪 Testing Summary
267
-
268
- ### v2.7.31 Testing
269
- | Test | Result | Notes |
270
- |------|--------|-------|
271
- | Docker Validation | ✅ 8/8 | All tests passed |
272
- | Local Regression | ✅ Pass | No issues found |
273
- | agentdb Stability | ✅ Pass | Still v1.6.1 |
274
- | CLI Commands | ✅ Pass | All functional |
275
- | Memory Operations | ✅ Pass | Working correctly |
276
- | ReasoningBank | ✅ Pass | Initialization successful |
277
-
278
- ### v2.7.30 Testing
279
- | Test | Result | Notes |
280
- |------|--------|-------|
281
- | Docker Validation | ✅ 7/7 | All core tests passed |
282
- | Vector Search | ✅ Pass | HNSW indexing working |
283
- | Memory Storage | ✅ Pass | SQLite backend stable |
284
- | Embedding Generation | ⚠️ Partial | Requires API keys |
285
-
286
- ---
287
-
288
- ## 📚 Documentation Index
289
-
290
- ### Release-Specific Documentation
291
- - **v2.7.31**: `docs/V2.7.31_RELEASE_NOTES.md`
292
- - **v2.7.30**: `docs/AGENTDB_V1.6.1_DEEP_REVIEW.md`
293
- - **v2.7.26**: `docs/V2.7.26_RELEASE_SUMMARY.md`
294
- - **v2.7.25**: `docs/V2.7.25_RELEASE_NOTES.md`
295
-
296
- ### General Documentation
297
- - **CHANGELOG**: `CHANGELOG.md` (all versions)
298
- - **README**: `README.md` (quick start)
299
- - **Development**: `CLAUDE.md` (SPARC methodology)
300
-
301
- ### Docker Testing
302
- - **v2.7.31**: `tests/docker/Dockerfile.v2.7.31-test`
303
- - **v2.7.30**: `tests/docker/Dockerfile.agentdb-deep-review`
304
- - **Test Reports**: `DOCKER_TEST_REPORT.md`
305
-
306
- ---
307
-
308
- ## 🎯 Feature Roadmap
309
-
310
- ### Recently Added (v2.7.30-31)
311
- - ✅ HNSW vector search (150x faster)
312
- - ✅ Enterprise provider fallback
313
- - ✅ Supabase cloud integration
314
- - ✅ Checkpointing and recovery
315
- - ✅ Budget controls
316
- - ✅ Real-time health monitoring
317
-
318
- ### Potential Future Enhancements
319
- - 🔮 Multi-tenant cloud support
320
- - 🔮 Visual dashboards for cost analytics
321
- - 🔮 Advanced provider analytics
322
- - 🔮 Distributed swarm coordination
323
- - 🔮 SSO and enterprise auth
324
- - 🔮 Audit logging and compliance
325
-
326
- ---
327
-
328
- ## 📞 Support & Resources
329
-
330
- ### Getting Help
331
- - **GitHub Issues**: https://github.com/ruvnet/claude-flow/issues
332
- - **Documentation**: https://github.com/ruvnet/claude-flow
333
- - **NPM Package**: https://www.npmjs.com/package/claude-flow
334
-
335
- ### Quick Links
336
- - **Latest Release**: v2.7.31
337
- - **Stable Release**: v2.7.31
338
- - **Alpha Release**: v2.7.31 (same as latest)
339
-
340
- ### Installation
341
- ```bash
342
- # Latest stable
343
- npm install -g claude-flow@latest
344
-
345
- # Specific version
346
- npm install -g claude-flow@2.7.31
347
-
348
- # NPX (no install)
349
- npx claude-flow@latest --help
350
- ```
351
-
352
- ---
353
-
354
- ## 📈 Statistics
355
-
356
- ### Release Velocity
357
- - **Last 5 releases**: 2 days (2025-11-05 to 2025-11-06)
358
- - **Average time between releases**: ~12 hours (rapid iteration)
359
- - **Critical fixes**: 1 (v2.7.29)
360
- - **Feature releases**: 2 (v2.7.30, v2.7.31)
361
-
362
- ### Package Size
363
- - **Compressed**: ~500KB
364
- - **Unpacked**: ~15MB
365
- - **Dependencies**: 730+ packages
366
- - **Files Included**: 200+ files
367
-
368
- ### Downloads (Estimated)
369
- - Check npm for latest download stats: https://www.npmjs.com/package/claude-flow
370
-
371
- ---
372
-
373
- **Document Generated**: 2025-11-06
374
- **Covers Versions**: v2.7.27 through v2.7.31
375
- **Status**: ✅ Current and Accurate