claude-flow 2.0.0-alpha.35 ā 2.0.0-alpha.36
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
CHANGED
|
@@ -30,7 +30,23 @@
|
|
|
30
30
|
- **ā” Performance**: 84.8% SWE-Bench solve rate, 2.8-4.4x speed improvement
|
|
31
31
|
|
|
32
32
|
> š„ **Revolutionary AI Coordination**: Build faster, smarter, and more efficiently with AI-powered development orchestration
|
|
33
|
-
|
|
33
|
+
|
|
34
|
+
## š **Table of Contents**
|
|
35
|
+
|
|
36
|
+
- [ā” Quick Start](#-try-v200-alpha-in-4-commands)
|
|
37
|
+
- [šŖ Advanced Hooks System](#-advanced-hooks-system)
|
|
38
|
+
- [š§ Neural Features](#neural-features)
|
|
39
|
+
- [š§ DAA MCP Endpoints](#-daa-mcp-endpoints)
|
|
40
|
+
- [š Hive-Mind Intelligence](#-revolutionary-hive-mind-intelligence)
|
|
41
|
+
- [š§ Hive-Mind Optimization](#-hive-mind-database-optimization)
|
|
42
|
+
- [ā” 87 Advanced MCP Tools](#-87-advanced-mcp-tools)
|
|
43
|
+
- [š® Advanced Usage Examples](#-advanced-usage-examples)
|
|
44
|
+
- [šļø Architecture Overview](#ļø-alpha-architecture-overview)
|
|
45
|
+
- [š ļø Installation & Setup](#ļø-alpha-installation--setup)
|
|
46
|
+
- [š Documentation](#-comprehensive-documentation)
|
|
47
|
+
- [š¤ Contributing](#-contributing-to-alpha)
|
|
48
|
+
- [š License](#-license)
|
|
49
|
+
|
|
34
50
|
## ā” **Try v2.0.0 Alpha in 4 Commands**
|
|
35
51
|
|
|
36
52
|
### šÆ **Instant Alpha Testing**
|
package/package.json
CHANGED
|
@@ -1602,7 +1602,7 @@ async function spawnClaudeCodeInstances(swarmId, swarmName, objective, workers,
|
|
|
1602
1602
|
claudeAvailable = true;
|
|
1603
1603
|
} catch {
|
|
1604
1604
|
console.log(chalk.yellow('\nā ļø Claude Code CLI not found in PATH'));
|
|
1605
|
-
console.log(chalk.gray('Install it with: npm install -g @anthropic/claude-code
|
|
1605
|
+
console.log(chalk.gray('Install it with: npm install -g @anthropic-ai/claude-code'));
|
|
1606
1606
|
console.log(chalk.gray('\nFalling back to displaying instructions...'));
|
|
1607
1607
|
}
|
|
1608
1608
|
|
|
@@ -1646,7 +1646,7 @@ async function spawnClaudeCodeInstances(swarmId, swarmName, objective, workers,
|
|
|
1646
1646
|
console.log(chalk.yellow('\nš Manual Execution Instructions:'));
|
|
1647
1647
|
console.log(chalk.gray('ā'.repeat(50)));
|
|
1648
1648
|
console.log(chalk.gray('1. Install Claude Code:'));
|
|
1649
|
-
console.log(chalk.green(' npm install -g @anthropic/claude-code
|
|
1649
|
+
console.log(chalk.green(' npm install -g @anthropic-ai/claude-code'));
|
|
1650
1650
|
console.log(chalk.gray('\n2. Run with the saved prompt:'));
|
|
1651
1651
|
console.log(chalk.green(` claude < ${promptFile}`));
|
|
1652
1652
|
console.log(chalk.gray('\n3. Or copy the prompt manually:'));
|
|
@@ -115,7 +115,7 @@ export async function swarmCommand(args, flags) {
|
|
|
115
115
|
claudeAvailable = true;
|
|
116
116
|
} catch {
|
|
117
117
|
console.log('ā ļø Claude Code CLI not found in PATH');
|
|
118
|
-
console.log('Install it with: npm install -g @anthropic/claude-code
|
|
118
|
+
console.log('Install it with: npm install -g @anthropic-ai/claude-code');
|
|
119
119
|
console.log('\nWould spawn Claude Code with swarm objective:');
|
|
120
120
|
console.log(`š Objective: ${objective}`);
|
|
121
121
|
console.log('\nTo use the built-in executor instead: claude-flow swarm "objective" --executor');
|