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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.0.0-alpha.35",
3
+ "version": "2.0.0-alpha.36",
4
4
  "description": "Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)",
5
5
  "main": "cli.mjs",
6
6
  "bin": {
@@ -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-cli'));
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-cli'));
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-cli');
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');