claude-flow 2.0.0-alpha.41 → 2.0.0-alpha.43
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 +11 -8
- package/bin/claude-flow +1 -1
- package/dist/cli/simple-commands/hooks.d.ts +1 -0
- package/dist/cli/simple-commands/hooks.d.ts.map +1 -1
- package/dist/cli/simple-commands/hooks.js +506 -229
- package/dist/cli/simple-commands/hooks.js.map +1 -1
- package/dist/cli/simple-commands/init/index.js +3 -5
- package/dist/cli/simple-commands/init/index.js.map +1 -1
- package/dist/memory/sqlite-store.js +44 -10
- package/dist/memory/sqlite-store.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/help-text.js +1 -1
- package/src/cli/simple-cli.js +1 -1
- package/src/mcp/mcp-server.js +33 -0
- package/src/memory/sqlite-store.js +42 -0
- package/cli.mjs +0 -126
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
## 🌟 **Overview**
|
|
18
18
|
|
|
19
|
-
**Claude-Flow v2
|
|
19
|
+
**Claude-Flow v2 Alpha** is an enterprise-grade AI orchestration platform that revolutionizes how developers build with AI. By combining **hive-mind swarm intelligence**, **neural pattern recognition**, and **87 advanced MCP tools**, Claude-Flow enables unprecedented AI-powered development workflows.
|
|
20
20
|
|
|
21
21
|
### 🎯 **Key Features**
|
|
22
22
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
- **🧠 Neural Networks**: 27+ cognitive models with WASM SIMD acceleration
|
|
25
25
|
- **🔧 87 MCP Tools**: Comprehensive toolkit for swarm orchestration, memory, and automation
|
|
26
26
|
- **🔄 Dynamic Agent Architecture (DAA)**: Self-organizing agents with fault tolerance
|
|
27
|
-
- **💾
|
|
27
|
+
- **💾 SQLite Memory System**: Persistent `.swarm/memory.db` with 12 specialized tables
|
|
28
28
|
- **🪝 Advanced Hooks System**: Automated workflows with pre/post operation hooks
|
|
29
29
|
- **📊 GitHub Integration**: 6 specialized modes for repository management
|
|
30
30
|
- **⚡ Performance**: 84.8% SWE-Bench solve rate, 2.8-4.4x speed improvement
|
|
@@ -174,12 +174,12 @@ npx claude-flow@alpha neural predict --model cognitive-analysis
|
|
|
174
174
|
npx claude-flow@alpha cognitive analyze --behavior "development workflow"
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
-
### **💾
|
|
177
|
+
### **💾 SQLite Memory Systems**
|
|
178
178
|
```bash
|
|
179
|
-
# Cross-session memory management
|
|
179
|
+
# Cross-session memory management with SQLite persistence
|
|
180
180
|
npx claude-flow@alpha memory store "project-context" "Full-stack app requirements"
|
|
181
181
|
npx claude-flow@alpha memory query "authentication" --namespace sparc
|
|
182
|
-
npx claude-flow@alpha memory stats
|
|
182
|
+
npx claude-flow@alpha memory stats # Shows 12 specialized tables
|
|
183
183
|
npx claude-flow@alpha memory export backup.json --namespace default
|
|
184
184
|
npx claude-flow@alpha memory import project-memory.json
|
|
185
185
|
```
|
|
@@ -258,6 +258,7 @@ npx claude-flow@alpha daa lifecycle-manage --agentId "agent-123" --action "scale
|
|
|
258
258
|
- `memory_usage`, `memory_search`, `memory_persist`
|
|
259
259
|
- `memory_namespace`, `memory_backup`, `memory_restore`
|
|
260
260
|
- `memory_compress`, `memory_sync`, `memory_analytics`
|
|
261
|
+
- **SQLite Backend**: Persistent `.swarm/memory.db` with 12 specialized tables
|
|
261
262
|
|
|
262
263
|
#### **📊 Performance & Monitoring** (10 tools)
|
|
263
264
|
- `performance_report`, `bottleneck_analyze`, `token_usage`
|
|
@@ -316,12 +317,12 @@ npx claude-flow@alpha neural predict --model cognitive-analysis
|
|
|
316
317
|
npx claude-flow@alpha cognitive analyze --behavior "development workflow"
|
|
317
318
|
```
|
|
318
319
|
|
|
319
|
-
### **💾
|
|
320
|
+
### **💾 SQLite Memory Systems**
|
|
320
321
|
```bash
|
|
321
|
-
# Cross-session memory management
|
|
322
|
+
# Cross-session memory management with SQLite persistence
|
|
322
323
|
npx claude-flow@alpha memory store "project-context" "Full-stack app requirements"
|
|
323
324
|
npx claude-flow@alpha memory query "authentication" --namespace sparc
|
|
324
|
-
npx claude-flow@alpha memory stats
|
|
325
|
+
npx claude-flow@alpha memory stats # Shows 12 specialized tables
|
|
325
326
|
npx claude-flow@alpha memory export backup.json --namespace default
|
|
326
327
|
npx claude-flow@alpha memory import project-memory.json
|
|
327
328
|
```
|
|
@@ -387,8 +388,10 @@ npx claude-flow@alpha bottleneck analyze --auto-optimize
|
|
|
387
388
|
```
|
|
388
389
|
|
|
389
390
|
### **💾 Advanced Memory Architecture**
|
|
391
|
+
- **SQLite Persistence**: Robust `.swarm/memory.db` storage with 12 specialized tables
|
|
390
392
|
- **Cross-Session Persistence**: Remember context across Claude Code sessions
|
|
391
393
|
- **Namespace Management**: Organized memory with hierarchical access
|
|
394
|
+
- **Enhanced Schema**: Agent interactions, training data, performance metrics, and more
|
|
392
395
|
- **Memory Compression**: Efficient storage of large coordination contexts
|
|
393
396
|
- **Distributed Sync**: Share memory across multiple AI instances
|
|
394
397
|
|
package/bin/claude-flow
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../src/cli/simple-commands/hooks.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../src/cli/simple-commands/hooks.js"],"names":[],"mappings":"AAmBA,qEAoEC"}
|