claude-flow 1.0.50 → 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.
- package/README.md +8 -7
- package/bin/claude-flow +1 -1
- package/package.json +1 -1
- package/src/cli/cli-core.ts +1 -1
- package/src/cli/commands/index.ts +4 -4
- package/src/cli/commands/migrate.ts +2 -2
- package/src/cli/main.ts +1 -1
package/README.md
CHANGED
|
@@ -11,10 +11,17 @@
|
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
+
## 🎯 **Transform Your Development Workflow**
|
|
15
|
+
|
|
16
|
+
**Claude-Flow** is the ultimate multi-terminal orchestration platform that revolutionizes how you work with Claude Code. Coordinate **multiple AI agents** simultaneously, each working on different aspects of your project while sharing knowledge through an intelligent memory bank.
|
|
17
|
+
|
|
18
|
+
> 🔥 **One command to rule them all**: `npx claude-flow@latest` - Deploy a full AI agent coordination system in seconds!
|
|
19
|
+
|
|
20
|
+
|
|
14
21
|
## 🚀 **What's New in v1.0.50**
|
|
15
22
|
|
|
16
23
|
### 🎯 **BatchTool Parallel Agent System**
|
|
17
|
-
- **✅
|
|
24
|
+
- **✅ Hundreds Concurrent Agents**: Deploy up to 100+ AI agents simultaneously via BatchTool
|
|
18
25
|
- **✅ TypeScript Infrastructure Improvements**: 91% reduction in compilation errors (379→32)
|
|
19
26
|
- **✅ Enhanced Test Framework**: Parallel testing with comprehensive coverage
|
|
20
27
|
- **✅ Improved Build Process**: Streamlined Deno compilation with dependency fixes
|
|
@@ -29,12 +36,6 @@
|
|
|
29
36
|
|
|
30
37
|
---
|
|
31
38
|
|
|
32
|
-
## 🎯 **Transform Your Development Workflow**
|
|
33
|
-
|
|
34
|
-
**Claude-Flow** is the ultimate multi-terminal orchestration platform that revolutionizes how you work with Claude Code. Coordinate **multiple AI agents** simultaneously, each working on different aspects of your project while sharing knowledge through an intelligent memory bank.
|
|
35
|
-
|
|
36
|
-
> 🔥 **One command to rule them all**: `npx claude-flow@latest` - Deploy a full AI agent coordination system in seconds!
|
|
37
|
-
|
|
38
39
|
---
|
|
39
40
|
|
|
40
41
|
## ⚡ **Quick Start**
|
package/bin/claude-flow
CHANGED
|
@@ -41,7 +41,7 @@ if (!denoPath) {
|
|
|
41
41
|
process.exit(1);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
// Use the simple CLI JavaScript file
|
|
44
|
+
// Use the simple CLI JavaScript file (works better for npm packages)
|
|
45
45
|
const cliPath = path.join(__dirname, '..', 'src', 'cli', 'simple-cli.js');
|
|
46
46
|
|
|
47
47
|
// Run the CLI with Deno
|
package/package.json
CHANGED
package/src/cli/cli-core.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { red, green, yellow, blue, bold, cyan } from "https://deno.land/std@0.22
|
|
|
8
8
|
import { ensureDir } from "https://deno.land/std@0.224.0/fs/mod.ts";
|
|
9
9
|
import { join } from "https://deno.land/std@0.224.0/path/mod.ts";
|
|
10
10
|
|
|
11
|
-
export const VERSION = "1.0.
|
|
11
|
+
export const VERSION = "1.0.51";
|
|
12
12
|
|
|
13
13
|
interface CommandContext {
|
|
14
14
|
args: string[];
|
|
@@ -10,7 +10,7 @@ import { JsonPersistenceManager } from "../../core/json-persistence.ts";
|
|
|
10
10
|
import { swarmAction } from "./swarm.ts";
|
|
11
11
|
import { SimpleMemoryManager } from "./memory.ts";
|
|
12
12
|
import { sparcAction } from "./sparc.ts";
|
|
13
|
-
import { createMigrateCommand } from "./migrate.ts";
|
|
13
|
+
// import { createMigrateCommand } from "./migrate.ts";
|
|
14
14
|
|
|
15
15
|
let orchestrator: Orchestrator | null = null;
|
|
16
16
|
let configManager: ConfigManager | null = null;
|
|
@@ -1398,9 +1398,9 @@ Now, please proceed with the task: ${task}`;
|
|
|
1398
1398
|
action: sparcAction,
|
|
1399
1399
|
});
|
|
1400
1400
|
|
|
1401
|
-
// Migration command
|
|
1402
|
-
const migrateCmd = createMigrateCommand();
|
|
1403
|
-
cli.command(migrateCmd);
|
|
1401
|
+
// Migration command (disabled - missing dependencies)
|
|
1402
|
+
// const migrateCmd = createMigrateCommand();
|
|
1403
|
+
// cli.command(migrateCmd);
|
|
1404
1404
|
|
|
1405
1405
|
// Swarm UI command (convenience wrapper)
|
|
1406
1406
|
cli.command({
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* Migration CLI Command Integration
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import { Command } from 'commander';
|
|
5
|
+
import { Command } from 'npm:commander';
|
|
6
6
|
import { MigrationRunner } from '../../migration/migration-runner';
|
|
7
7
|
import { MigrationAnalyzer } from '../../migration/migration-analyzer';
|
|
8
8
|
import { RollbackManager } from '../../migration/rollback-manager';
|
|
9
9
|
import { MigrationStrategy } from '../../migration/types';
|
|
10
10
|
import { logger } from '../../migration/logger';
|
|
11
|
-
import * as path from 'path';
|
|
11
|
+
import * as path from 'node:path';
|
|
12
12
|
import chalk from "npm:chalk@^4.1.2";
|
|
13
13
|
|
|
14
14
|
export function createMigrateCommand(): Command {
|
package/src/cli/main.ts
CHANGED