claude-flow 2.0.0-alpha.34 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.0.0-alpha.34",
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": {
@@ -70,8 +70,8 @@ USAGE:
70
70
  claude-flow init --sparc # Initialize with SPARC methodology
71
71
  claude-flow help hive-mind # Learn about Hive Mind features
72
72
 
73
- šŸ“š Documentation: https://github.com/ruvnet/claude-code-flow
74
- šŸ Hive Mind Guide: https://github.com/ruvnet/claude-code-flow/docs/hive-mind
73
+ šŸ“š Documentation: https://github.com/ruvnet/claude-flow
74
+ šŸ Hive Mind Guide: https://github.com/ruvnet/claude-flow/tree/main/docs/hive-mind
75
75
  šŸ ruv-swarm: https://github.com/ruvnet/ruv-FANN/tree/main/ruv-swarm
76
76
  `;
77
77
 
@@ -90,7 +90,7 @@ ${chalk.bold('OPTIONS:')}
90
90
  --no-auto-permissions Disable automatic --dangerously-skip-permissions
91
91
 
92
92
  ${chalk.bold('For more information:')}
93
- ${chalk.blue('https://github.com/ruvnet/claude-code-flow/docs/hive-mind.md')}
93
+ ${chalk.blue('https://github.com/ruvnet/claude-flow/tree/main/docs/hive-mind')}
94
94
  `);
95
95
  }
96
96
 
@@ -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');