claude-flow 2.0.0-alpha.5 → 2.0.0-alpha.6

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
@@ -3,7 +3,7 @@
3
3
  <div align="center">
4
4
 
5
5
  [![🌟 Star on GitHub](https://img.shields.io/github/stars/ruvnet/claude-code-flow?style=for-the-badge&logo=github&color=gold)](https://github.com/ruvnet/claude-code-flow)
6
- [![📦 NPX Ready](https://img.shields.io/npm/v/claude-flow?style=for-the-badge&logo=npm&color=blue&label=v2.0.0-alpha.3)](https://www.npmjs.com/package/claude-flow)
6
+ [![📦 NPX Ready](https://img.shields.io/npm/v/claude-flow?style=for-the-badge&logo=npm&color=blue&label=v2.0.0-alpha.5)](https://www.npmjs.com/package/claude-flow)
7
7
  [![⚡ Claude Code](https://img.shields.io/badge/Claude%20Code-MCP%20Ready-green?style=for-the-badge&logo=anthropic)](https://github.com/ruvnet/claude-code-flow)
8
8
  [![🐝 ruv-swarm](https://img.shields.io/badge/ruv--swarm-87%20Tools-purple?style=for-the-badge&logo=gitswarm)](https://github.com/ruvnet/ruv-FANN)
9
9
  [![🧠 Neural](https://img.shields.io/badge/WASM-Neural%20Networks-red?style=for-the-badge&logo=webassembly)](https://github.com/ruvnet/claude-code-flow)
@@ -50,7 +50,7 @@ Instead of promising "AI magic," Claude Flow delivers practical improvements:
50
50
 
51
51
  ---
52
52
 
53
- ## 🚀 **What's New in v2.0.0-alpha.3**
53
+ ## 🚀 **What's New in v2.0.0-alpha.5**
54
54
 
55
55
  ### 🔌 **Automatic MCP Setup (NEW!)**
56
56
  - **Smart Detection** - Automatically detects Claude Code CLI installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.0.0-alpha.5",
3
+ "version": "2.0.0-alpha.6",
4
4
  "description": "Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)",
5
5
  "main": "cli.mjs",
6
6
  "bin": {
@@ -7,6 +7,7 @@ import { createSparcStructureManually } from './sparc-structure.js';
7
7
  import { createClaudeSlashCommands } from './claude-commands/slash-commands.js';
8
8
  import { createOptimizedClaudeSlashCommands } from './claude-commands/optimized-slash-commands.js';
9
9
  import { execSync } from 'child_process';
10
+ import { promises as fs } from 'fs';
10
11
  import {
11
12
  createSparcClaudeMd,
12
13
  createFullClaudeMd,
@@ -1036,7 +1037,7 @@ ${commands.map(cmd => `- [${cmd}](./${cmd}.md)`).join('\n')}
1036
1037
  // Unix wrapper
1037
1038
  const unixWrapper = createWrapperScript('unix');
1038
1039
  await Deno.writeTextFile(`${workingDir}/claude-flow`, unixWrapper);
1039
- await require('fs').promises.chmod(`${workingDir}/claude-flow`, 0o755);
1040
+ await fs.chmod(`${workingDir}/claude-flow`, 0o755);
1040
1041
 
1041
1042
  // Windows wrapper
1042
1043
  await Deno.writeTextFile(`${workingDir}/claude-flow.bat`, createWrapperScript('windows'));
@@ -1056,7 +1057,7 @@ ${commands.map(cmd => `- [${cmd}](./${cmd}.md)`).join('\n')}
1056
1057
  const content = createHelperScript(helper);
1057
1058
  if (content) {
1058
1059
  await Deno.writeTextFile(`${claudeDir}/helpers/${helper}`, content);
1059
- await require('fs').promises.chmod(`${claudeDir}/helpers/${helper}`, 0o755);
1060
+ await fs.chmod(`${claudeDir}/helpers/${helper}`, 0o755);
1060
1061
  }
1061
1062
  }
1062
1063
  }