claude-flow 2.0.0-alpha.44 โ†’ 2.0.0-alpha.45

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/bin/claude-flow CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
  # Claude-Flow Smart Dispatcher - Detects and uses the best available runtime
3
3
 
4
- VERSION="2.0.0-alpha.44"
4
+ VERSION="2.0.0-alpha.45"
5
5
 
6
6
  # Determine the correct path based on how the script is invoked
7
7
  if [ -L "$0" ]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.0.0-alpha.44",
3
+ "version": "2.0.0-alpha.45",
4
4
  "description": "Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)",
5
5
  "main": "cli.mjs",
6
6
  "bin": {
@@ -3,7 +3,7 @@
3
3
  * Provides clear, actionable command documentation
4
4
  */
5
5
 
6
- export const VERSION = '2.0.0-alpha.44';
6
+ export const VERSION = '2.0.0-alpha.45';
7
7
 
8
8
  export const MAIN_HELP = `
9
9
  ๐ŸŒŠ Claude-Flow v${VERSION} - Enterprise-Grade AI Agent Orchestration Platform
@@ -8,25 +8,71 @@
8
8
  3. **File operations** โ†’ Batch ALL reads/writes together
9
9
  4. **NEVER** operate sequentially after swarm init
10
10
 
11
- ## ๐Ÿš€ IMPORTANT: Claude Flow AI-Driven Development
12
-
13
- ### Claude Code Handles:
14
- - โœ… **ALL file operations** (Read, Write, Edit, MultiEdit)
15
- - โœ… **ALL code generation** and development tasks
16
- - โœ… **ALL bash commands** and system operations
17
- - โœ… **ALL actual implementation** work
18
- - โœ… **Project navigation** and code analysis
19
-
20
- ### Claude Flow MCP Tools Handle:
21
- - ๐Ÿง  **Coordination only** - Orchestrating Claude Code's actions
22
- - ๐Ÿ’พ **Memory management** - Persistent state across sessions
23
- - ๐Ÿค– **Neural features** - Cognitive patterns and learning
24
- - ๐Ÿ“Š **Performance tracking** - Monitoring and metrics
25
- - ๐Ÿ **Swarm orchestration** - Multi-agent coordination
26
- - ๐Ÿ”— **GitHub integration** - Advanced repository management
11
+ ## ๐Ÿš€ CRITICAL: Claude Code Does ALL Real Work
12
+
13
+ ### ๐ŸŽฏ CLAUDE CODE IS THE ONLY EXECUTOR
14
+
15
+ **ABSOLUTE RULE**: Claude Code performs ALL actual work:
16
+
17
+ ### โœ… Claude Code ALWAYS Handles:
18
+ - ๐Ÿ”ง **ALL file operations** (Read, Write, Edit, MultiEdit, Glob, Grep)
19
+ - ๐Ÿ’ป **ALL code generation** and programming tasks
20
+ - ๐Ÿ–ฅ๏ธ **ALL bash commands** and system operations
21
+ - ๐Ÿ—๏ธ **ALL actual implementation** work
22
+ - ๐Ÿ” **ALL project navigation** and code analysis
23
+ - ๐Ÿ“ **ALL TodoWrite** and task management
24
+ - ๐Ÿ”„ **ALL git operations** (commit, push, merge)
25
+ - ๐Ÿ“ฆ **ALL package management** (npm, pip, etc.)
26
+ - ๐Ÿงช **ALL testing** and validation
27
+ - ๐Ÿ”ง **ALL debugging** and troubleshooting
28
+
29
+ ### ๐Ÿง  Claude Flow MCP Tools ONLY Handle:
30
+ - ๐ŸŽฏ **Coordination only** - Planning Claude Code's actions
31
+ - ๐Ÿ’พ **Memory management** - Storing decisions and context
32
+ - ๐Ÿค– **Neural features** - Learning from Claude Code's work
33
+ - ๐Ÿ“Š **Performance tracking** - Monitoring Claude Code's efficiency
34
+ - ๐Ÿ **Swarm orchestration** - Coordinating multiple Claude Code instances
35
+ - ๐Ÿ”— **GitHub integration** - Advanced repository coordination
36
+
37
+ ### ๐Ÿšจ CRITICAL SEPARATION OF CONCERNS:
38
+
39
+ **โŒ MCP Tools NEVER:**
40
+ - Write files or create content
41
+ - Execute bash commands
42
+ - Generate code
43
+ - Perform file operations
44
+ - Handle TodoWrite operations
45
+ - Execute system commands
46
+ - Do actual implementation work
47
+
48
+ **โœ… MCP Tools ONLY:**
49
+ - Coordinate and plan
50
+ - Store memory and context
51
+ - Track performance
52
+ - Orchestrate workflows
53
+ - Provide intelligence insights
27
54
 
28
55
  ### โš ๏ธ Key Principle:
29
- **MCP tools DO NOT create content or write code.** They coordinate and enhance Claude Code's native capabilities. Think of them as an orchestration layer that helps Claude Code work more efficiently.
56
+ **MCP tools coordinate, Claude Code executes.** Think of MCP tools as the "brain" that plans and coordinates, while Claude Code is the "hands" that do all the actual work.
57
+
58
+ ### ๐Ÿ”„ WORKFLOW EXECUTION PATTERN:
59
+
60
+ **โœ… CORRECT Workflow:**
61
+ 1. **MCP**: `mcp__claude-flow__swarm_init` (coordination setup)
62
+ 2. **MCP**: `mcp__claude-flow__agent_spawn` (planning agents)
63
+ 3. **MCP**: `mcp__claude-flow__task_orchestrate` (task coordination)
64
+ 4. **Claude Code**: `Read`, `Write`, `Edit`, `Bash` (actual work)
65
+ 5. **Claude Code**: `TodoWrite` (task management)
66
+ 6. **MCP**: `mcp__claude-flow__memory_usage` (store results)
67
+
68
+ **โŒ WRONG Workflow:**
69
+ 1. **MCP**: `mcp__claude-flow__terminal_execute` (DON'T DO THIS)
70
+ 2. **MCP**: File creation via MCP (DON'T DO THIS)
71
+ 3. **MCP**: Code generation via MCP (DON'T DO THIS)
72
+
73
+ ### ๐Ÿšจ REMEMBER:
74
+ - **MCP tools** = Coordination, planning, memory, intelligence
75
+ - **Claude Code** = All actual execution, coding, file operations
30
76
 
31
77
  ## ๐Ÿš€ CRITICAL: Parallel Execution & Batch Operations
32
78