claude-flow 1.0.51 → 1.0.52

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.
Files changed (2) hide show
  1. package/bin/claude-flow +2 -2
  2. package/package.json +1 -1
package/bin/claude-flow CHANGED
@@ -41,8 +41,8 @@ if (!denoPath) {
41
41
  process.exit(1);
42
42
  }
43
43
 
44
- // Use the main CLI TypeScript file
45
- const cliPath = path.join(__dirname, '..', 'src', 'cli', 'main.ts');
44
+ // Use the simple CLI JavaScript file (works better for npm packages)
45
+ const cliPath = path.join(__dirname, '..', 'src', 'cli', 'simple-cli.js');
46
46
 
47
47
  // Run the CLI with Deno
48
48
  const deno = spawn(denoPath, ['run', '--allow-all', '--no-check', cliPath, ...process.argv.slice(2)], {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "Advanced AI agent orchestration system for Claude Code",
5
5
  "main": "src/cli/main.ts",
6
6
  "bin": {