claude-flow 2.7.1 → 2.7.3
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/README.md +83 -22
- package/bin/claude-flow +1 -1
- package/dist/src/cli/commands/memory.js +272 -33
- package/dist/src/cli/commands/memory.js.map +1 -1
- package/dist/src/cli/help-formatter.js +3 -5
- package/dist/src/cli/help-formatter.js.map +1 -1
- package/dist/src/cli/simple-cli.js +0 -104
- package/dist/src/cli/simple-cli.js.map +1 -1
- package/dist/src/cli/simple-commands/config.js +257 -115
- package/dist/src/cli/simple-commands/config.js.map +1 -1
- package/dist/src/cli/validation-helper.js.map +1 -1
- package/dist/src/memory/agentdb-adapter.js +214 -0
- package/dist/src/memory/agentdb-adapter.js.map +1 -0
- package/dist/src/memory/backends/agentdb.js +234 -0
- package/dist/src/memory/backends/agentdb.js.map +1 -0
- package/dist/src/memory/index.js +11 -2
- package/dist/src/memory/index.js.map +1 -1
- package/dist/src/memory/migration/legacy-bridge.js +222 -0
- package/dist/src/memory/migration/legacy-bridge.js.map +1 -0
- package/dist/src/utils/metrics-reader.js +29 -41
- package/dist/src/utils/metrics-reader.js.map +1 -1
- package/docs/.claude-flow/metrics/performance.json +80 -2
- package/docs/.claude-flow/metrics/task-metrics.json +3 -3
- package/docs/INDEX.md +37 -12
- package/docs/README.md +92 -4
- package/docs/agentdb/AGENT3_FINAL_REPORT.md +643 -0
- package/docs/agentdb/AGENT3_SUMMARY.md +354 -0
- package/docs/agentdb/AGENTDB_INTEGRATION_PLAN.md +1258 -0
- package/docs/agentdb/BACKWARD_COMPATIBILITY_GUARANTEE.md +421 -0
- package/docs/agentdb/OPTIMIZATION_REPORT.md +360 -0
- package/docs/agentdb/PRODUCTION_READINESS.md +499 -0
- package/docs/agentdb/PUBLISHING_CHECKLIST.md +364 -0
- package/docs/agentdb/README.md +58 -0
- package/docs/agentdb/SWARM_COORDINATION.md +393 -0
- package/docs/agentdb/SWARM_IMPLEMENTATION_COMPLETE.md +538 -0
- package/docs/agentdb/agentdb-integration-summary.md +331 -0
- package/docs/agentdb/benchmarks/baseline-report.json +75 -0
- package/docs/development/AGENT1_COMPLETION_REPORT.md +466 -0
- package/docs/development/README.md +22 -0
- package/docs/fixes/PATTERN_FIX_CONFIRMATION.md +513 -0
- package/docs/fixes/README.md +33 -0
- package/docs/guides/README.md +29 -0
- package/docs/integrations/agentic-flow/INTEGRATION-TEST-v1.7.1.md +419 -0
- package/docs/integrations/agentic-flow/MIGRATION_v1.7.0.md +381 -0
- package/docs/integrations/agentic-flow/README.md +229 -0
- package/docs/integrations/agentic-flow/RELEASE-v1.7.0.md +348 -0
- package/docs/integrations/agentic-flow/RELEASE-v1.7.1.md +547 -0
- package/docs/integrations/agentic-flow/VERIFICATION-v1.7.4.md +556 -0
- package/docs/performance/README.md +31 -0
- package/docs/releases/ALPHA_TAG_UPDATE.md +150 -0
- package/docs/releases/README.md +25 -0
- package/docs/{RELEASE-NOTES-v2.7.0-alpha.10.md → releases/v2.7.0-alpha.10/RELEASE-NOTES-v2.7.0-alpha.10.md} +1 -1
- package/docs/releases/v2.7.1/RELEASE_SUMMARY_v2.7.1.md +340 -0
- package/docs/validation/DOCKER_VERIFICATION_REPORT.md +371 -0
- package/docs/validation/README.md +25 -0
- package/docs/validation/REGRESSION_ANALYSIS_v2.7.1.md +357 -0
- package/package.json +4 -3
- package/scripts/fix-agentdb-imports.sh +18 -0
- package/scripts/run-docker-regression.sh +101 -0
- package/scripts/verify-agentdb-integration.sh +220 -0
- package/src/cli/commands/memory.ts +347 -35
- package/src/memory/README-AGENTDB.md +366 -0
- package/src/memory/agentdb-adapter.js +373 -0
- package/src/memory/backends/agentdb.js +360 -0
- package/src/memory/index.js +32 -3
- package/src/memory/migration/legacy-bridge.js +330 -0
- /package/docs/{COMMANDS_TO_SKILLS_MIGRATION.md → development/COMMANDS_TO_SKILLS_MIGRATION.md} +0 -0
- /package/docs/{FINAL_INIT_STRUCTURE.md → development/FINAL_INIT_STRUCTURE.md} +0 -0
- /package/docs/{CLI-MEMORY-COMMANDS-WORKING.md → fixes/CLI-MEMORY-COMMANDS-WORKING.md} +0 -0
- /package/docs/{PATTERN_PERSISTENCE_FIX.md → fixes/PATTERN_PERSISTENCE_FIX.md} +0 -0
- /package/docs/{skills-tutorial.md → guides/skills-tutorial.md} +0 -0
- /package/docs/{PERFORMANCE-JSON-IMPROVEMENTS.md → performance/PERFORMANCE-JSON-IMPROVEMENTS.md} +0 -0
- /package/docs/{PERFORMANCE-METRICS-GUIDE.md → performance/PERFORMANCE-METRICS-GUIDE.md} +0 -0
- /package/docs/{RELEASE-NOTES-v2.7.0-alpha.9.md → releases/v2.7.0-alpha.9/RELEASE-NOTES-v2.7.0-alpha.9.md} +0 -0
- /package/docs/{RELEASE_v2.7.1.md → releases/v2.7.1/RELEASE_v2.7.1.md} +0 -0
package/docs/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# 📚 Claude-Flow Documentation
|
|
2
2
|
|
|
3
|
-
Welcome to the Claude-Flow documentation! This directory contains comprehensive guides and references for using Claude-Flow v2.
|
|
3
|
+
Welcome to the Claude-Flow documentation! This directory contains comprehensive guides and references for using Claude-Flow v2.7.0.
|
|
4
4
|
|
|
5
|
-
## 📖 Documentation
|
|
5
|
+
## 📖 Core Documentation
|
|
6
6
|
|
|
7
7
|
| Document | Description |
|
|
8
8
|
|----------|-------------|
|
|
9
|
-
| [INDEX.md](INDEX.md) |
|
|
9
|
+
| [INDEX.md](INDEX.md) | Complete documentation hub with navigation and quick start |
|
|
10
10
|
| [USER_GUIDE.md](USER_GUIDE.md) | Comprehensive user guide with tutorials and examples |
|
|
11
11
|
| [API_DOCUMENTATION.md](API_DOCUMENTATION.md) | Complete API reference with all 112 MCP tools |
|
|
12
12
|
| [AGENTS.md](AGENTS.md) | All 65+ agent types with capabilities and usage |
|
|
@@ -17,12 +17,100 @@ Welcome to the Claude-Flow documentation! This directory contains comprehensive
|
|
|
17
17
|
| [DEPLOYMENT.md](DEPLOYMENT.md) | Production deployment guides for Docker, K8s, Cloud |
|
|
18
18
|
| [DEVELOPMENT_WORKFLOW.md](DEVELOPMENT_WORKFLOW.md) | Development setup and contribution guide |
|
|
19
19
|
|
|
20
|
+
## 📁 Documentation Categories
|
|
21
|
+
|
|
22
|
+
### 🚀 [Releases](./releases/)
|
|
23
|
+
Release notes, changelogs, and version documentation
|
|
24
|
+
- [v2.7.1](./releases/v2.7.1/) - Current stable release
|
|
25
|
+
- [v2.7.0-alpha.10](./releases/v2.7.0-alpha.10/) - Alpha release notes
|
|
26
|
+
- [v2.7.0-alpha.9](./releases/v2.7.0-alpha.9/) - Previous alpha release
|
|
27
|
+
- [Alpha Tag Updates](./releases/ALPHA_TAG_UPDATE.md) - Alpha versioning guide
|
|
28
|
+
|
|
29
|
+
### 🧠 [AgentDB Integration](./agentdb/)
|
|
30
|
+
AgentDB v1.3.9 integration documentation (96x-164x performance boost)
|
|
31
|
+
- [Implementation Complete](./agentdb/SWARM_IMPLEMENTATION_COMPLETE.md) - 3-agent swarm details
|
|
32
|
+
- [Integration Plan](./agentdb/AGENTDB_INTEGRATION_PLAN.md) - Planning and design
|
|
33
|
+
- [Backward Compatibility](./agentdb/BACKWARD_COMPATIBILITY_GUARANTEE.md) - 100% compatibility guarantee
|
|
34
|
+
- [Publishing Checklist](./agentdb/PUBLISHING_CHECKLIST.md) - Pre-release verification
|
|
35
|
+
- [Integration Summary](./agentdb/agentdb-integration-summary.md) - Quick overview
|
|
36
|
+
- [Production Readiness](./agentdb/PRODUCTION_READINESS.md) - Deployment guide
|
|
37
|
+
- [Optimization Report](./agentdb/OPTIMIZATION_REPORT.md) - Performance analysis
|
|
38
|
+
|
|
39
|
+
### ⚡ [Performance](./performance/)
|
|
40
|
+
Performance optimization guides, metrics, and benchmarks
|
|
41
|
+
- [JSON Improvements](./performance/PERFORMANCE-JSON-IMPROVEMENTS.md) - JSON optimization results
|
|
42
|
+
- [Metrics Guide](./performance/PERFORMANCE-METRICS-GUIDE.md) - Performance tracking and analysis
|
|
43
|
+
|
|
44
|
+
### 🔧 [Bug Fixes](./fixes/)
|
|
45
|
+
Bug fix documentation and patch reports
|
|
46
|
+
- [Pattern Persistence Fix](./fixes/PATTERN_PERSISTENCE_FIX.md) - v2.7.1 critical fix
|
|
47
|
+
- [Pattern Fix Confirmation](./fixes/PATTERN_FIX_CONFIRMATION.md) - Verification and testing
|
|
48
|
+
- [CLI Memory Commands](./fixes/CLI-MEMORY-COMMANDS-WORKING.md) - Memory command fixes
|
|
49
|
+
|
|
50
|
+
### 🛠️ [Development](./development/)
|
|
51
|
+
Internal development reports and implementation details
|
|
52
|
+
- [Agent 1 Completion Report](./development/AGENT1_COMPLETION_REPORT.md) - AgentDB integration agent
|
|
53
|
+
- [Final Init Structure](./development/FINAL_INIT_STRUCTURE.md) - Initialization architecture
|
|
54
|
+
- [Commands to Skills Migration](./development/COMMANDS_TO_SKILLS_MIGRATION.md) - Migration guide
|
|
55
|
+
|
|
56
|
+
### ✅ [Validation](./validation/)
|
|
57
|
+
Test reports and validation results
|
|
58
|
+
- [Docker Verification Report](./validation/DOCKER_VERIFICATION_REPORT.md) - Docker testing results
|
|
59
|
+
|
|
60
|
+
### 📚 [User Guides](./guides/)
|
|
61
|
+
Tutorials and learning resources
|
|
62
|
+
- [Skills Tutorial](./guides/skills-tutorial.md) - Complete guide to 25 Claude Flow skills
|
|
63
|
+
|
|
64
|
+
### 🔌 [Integrations](./integrations/)
|
|
65
|
+
Third-party platform integrations
|
|
66
|
+
- **ReasoningBank** (16 docs) - AI reasoning integration
|
|
67
|
+
- **Agentic Flow** (5 docs) - Agent flow system
|
|
68
|
+
- **Agent Booster** - Performance optimization
|
|
69
|
+
- **Epic SDK** - SDK integration
|
|
70
|
+
|
|
71
|
+
### 🏗️ Additional Resources
|
|
72
|
+
- [Architecture](./architecture/) - System architecture documentation
|
|
73
|
+
- [Experimental](./experimental/) - Experimental features
|
|
74
|
+
- [Reference](./reference/) - API and command reference
|
|
75
|
+
- [Setup](./setup/) - Setup and configuration guides
|
|
76
|
+
- [CI/CD](./ci-cd/) - Continuous integration workflows
|
|
77
|
+
- [SDK](./sdk/) - SDK documentation
|
|
78
|
+
- [Wiki](./wiki/) - Additional documentation
|
|
79
|
+
|
|
20
80
|
## 🚀 Quick Links
|
|
21
81
|
|
|
22
82
|
- **Getting Started**: See [USER_GUIDE.md](USER_GUIDE.md#getting-started)
|
|
23
83
|
- **API Reference**: See [API_DOCUMENTATION.md](API_DOCUMENTATION.md)
|
|
24
84
|
- **Agent Catalog**: See [AGENTS.md](AGENTS.md)
|
|
25
85
|
- **Deployment**: See [DEPLOYMENT.md](DEPLOYMENT.md)
|
|
86
|
+
- **Skills Tutorial**: See [Skills Tutorial](./guides/skills-tutorial.md)
|
|
87
|
+
- **AgentDB Integration**: See [AgentDB](./agentdb/)
|
|
88
|
+
|
|
89
|
+
## 🎯 By User Type
|
|
90
|
+
|
|
91
|
+
### 👨💻 **Developers**
|
|
92
|
+
1. [Quick Start Guide](../README.md#-quick-start) - Get up and running
|
|
93
|
+
2. [Skills Tutorial](./guides/skills-tutorial.md) - Natural language skill activation
|
|
94
|
+
3. [SPARC Development](SPARC.md) - Structured development methodology
|
|
95
|
+
4. [API Reference](API_DOCUMENTATION.md) - Complete endpoint documentation
|
|
96
|
+
|
|
97
|
+
### 🏢 **DevOps/Operations**
|
|
98
|
+
1. [Deployment Guide](DEPLOYMENT.md) - Production deployment
|
|
99
|
+
2. [Architecture Overview](ARCHITECTURE.md) - System design
|
|
100
|
+
3. [Docker Verification](./validation/DOCKER_VERIFICATION_REPORT.md) - Testing reports
|
|
101
|
+
|
|
102
|
+
### 👑 **Technical Leaders**
|
|
103
|
+
1. [System Architecture](ARCHITECTURE.md#system-overview) - High-level design
|
|
104
|
+
2. [Performance Metrics](./performance/) - Benchmarks and optimization
|
|
105
|
+
3. [AgentDB Integration](./agentdb/) - 96x-164x performance improvements
|
|
106
|
+
|
|
107
|
+
## 📊 Performance Highlights
|
|
108
|
+
|
|
109
|
+
- **96x-164x faster search** - AgentDB vector search improvements
|
|
110
|
+
- **4-32x memory reduction** - Quantization benefits
|
|
111
|
+
- **84.8% SWE-Bench solve rate** - Industry-leading performance
|
|
112
|
+
- **32.3% token reduction** - Efficient context management
|
|
113
|
+
- **2.8-4.4x speed improvement** - Parallel coordination
|
|
26
114
|
|
|
27
115
|
## 📞 Support
|
|
28
116
|
|
|
@@ -32,4 +120,4 @@ Welcome to the Claude-Flow documentation! This directory contains comprehensive
|
|
|
32
120
|
|
|
33
121
|
---
|
|
34
122
|
|
|
35
|
-
*Last Updated: January 2025 | Version:
|
|
123
|
+
*Last Updated: January 2025 | Version: v2.7.1*
|