snow-flow 1.4.11 → 1.4.12

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/CLAUDE.md +84 -84
  2. package/package.json +1 -1
package/CLAUDE.md CHANGED
@@ -737,17 +737,17 @@ If ANY answer is "No", you MUST combine operations into a single message!
737
737
 
738
738
  **✅ CORRECT Workflow:**
739
739
 
740
- 1. **MCP**: `mcp__claude-flow__swarm_init` (coordination setup)
741
- 2. **MCP**: `mcp__claude-flow__agent_spawn` (planning agents)
742
- 3. **MCP**: `mcp__claude-flow__task_orchestrate` (task coordination)
740
+ 1. **MCP**: `mcp__snow-flow__swarm_init` (coordination setup)
741
+ 2. **MCP**: `mcp__snow-flow__agent_spawn` (planning agents)
742
+ 3. **MCP**: `mcp__snow-flow__task_orchestrate` (task coordination)
743
743
  4. **Claude Code**: `Task` tool to spawn agents with coordination instructions
744
744
  5. **Claude Code**: `TodoWrite` with ALL todos batched (5-10+ in ONE call)
745
745
  6. **Claude Code**: `Read`, `Write`, `Edit`, `Bash` (actual work)
746
- 7. **MCP**: `mcp__claude-flow__memory_usage` (store results)
746
+ 7. **MCP**: `mcp__snow-flow__memory_usage` (store results)
747
747
 
748
748
  **❌ WRONG Workflow:**
749
749
 
750
- 1. **MCP**: `mcp__claude-flow__terminal_execute` (DON'T DO THIS)
750
+ 1. **MCP**: `mcp__snow-flow__terminal_execute` (DON'T DO THIS)
751
751
  2. **MCP**: File creation via MCP (DON'T DO THIS)
752
752
  3. **MCP**: Code generation via MCP (DON'T DO THIS)
753
753
  4. **Claude Code**: Sequential Task calls (DON'T DO THIS)
@@ -792,12 +792,12 @@ If you need to do X operations, they should be in 1 message, not X messages
792
792
  ```javascript
793
793
  [Single Message with BatchTool]:
794
794
  // MCP coordination setup
795
- mcp__claude-flow__swarm_init { topology: "mesh", maxAgents: 6 }
796
- mcp__claude-flow__agent_spawn { type: "researcher" }
797
- mcp__claude-flow__agent_spawn { type: "coder" }
798
- mcp__claude-flow__agent_spawn { type: "analyst" }
799
- mcp__claude-flow__agent_spawn { type: "tester" }
800
- mcp__claude-flow__agent_spawn { type: "coordinator" }
795
+ mcp__snow-flow__swarm_init { topology: "mesh", maxAgents: 6 }
796
+ mcp__snow-flow__agent_spawn { type: "researcher" }
797
+ mcp__snow-flow__agent_spawn { type: "coder" }
798
+ mcp__snow-flow__agent_spawn { type: "analyst" }
799
+ mcp__snow-flow__agent_spawn { type: "tester" }
800
+ mcp__snow-flow__agent_spawn { type: "coordinator" }
801
801
 
802
802
  // Claude Code execution - ALL in parallel
803
803
  Task("You are researcher agent. MUST coordinate via hooks...")
@@ -816,7 +816,7 @@ If you need to do X operations, they should be in 1 message, not X messages
816
816
  **❌ WRONG - Multiple Messages (NEVER DO THIS):**
817
817
 
818
818
  ```javascript
819
- Message 1: mcp__claude-flow__swarm_init
819
+ Message 1: mcp__snow-flow__swarm_init
820
820
  Message 2: Task("researcher agent")
821
821
  Message 3: Task("coder agent")
822
822
  Message 4: TodoWrite({ todo: "single todo" })
@@ -868,19 +868,19 @@ Once configured, Claude Flow MCP tools enhance Claude Code's coordination:
868
868
 
869
869
  **Initialize a swarm:**
870
870
 
871
- - Use the `mcp__claude-flow__swarm_init` tool to set up coordination topology
871
+ - Use the `mcp__snow-flow__swarm_init` tool to set up coordination topology
872
872
  - Choose: mesh, hierarchical, ring, or star
873
873
  - This creates a coordination framework for Claude Code's work
874
874
 
875
875
  **Spawn agents:**
876
876
 
877
- - Use `mcp__claude-flow__agent_spawn` tool to create specialized coordinators
877
+ - Use `mcp__snow-flow__agent_spawn` tool to create specialized coordinators
878
878
  - Agent types represent different thinking patterns, not actual coders
879
879
  - They help Claude Code approach problems from different angles
880
880
 
881
881
  **Orchestrate tasks:**
882
882
 
883
- - Use `mcp__claude-flow__task_orchestrate` tool to coordinate complex workflows
883
+ - Use `mcp__snow-flow__task_orchestrate` tool to coordinate complex workflows
884
884
  - This breaks down tasks for Claude Code to execute systematically
885
885
  - The agents don't write code - they coordinate Claude Code's actions
886
886
 
@@ -888,38 +888,38 @@ Once configured, Claude Flow MCP tools enhance Claude Code's coordination:
888
888
 
889
889
  ### Coordination Tools:
890
890
 
891
- - `mcp__claude-flow__swarm_init` - Set up coordination topology for Claude Code
892
- - `mcp__claude-flow__agent_spawn` - Create cognitive patterns to guide Claude Code
893
- - `mcp__claude-flow__task_orchestrate` - Break down and coordinate complex tasks
891
+ - `mcp__snow-flow__swarm_init` - Set up coordination topology for Claude Code
892
+ - `mcp__snow-flow__agent_spawn` - Create cognitive patterns to guide Claude Code
893
+ - `mcp__snow-flow__task_orchestrate` - Break down and coordinate complex tasks
894
894
 
895
895
  ### Monitoring Tools:
896
896
 
897
- - `mcp__claude-flow__swarm_status` - Monitor coordination effectiveness
898
- - `mcp__claude-flow__agent_list` - View active cognitive patterns
899
- - `mcp__claude-flow__agent_metrics` - Track coordination performance
900
- - `mcp__claude-flow__task_status` - Check workflow progress
901
- - `mcp__claude-flow__task_results` - Review coordination outcomes
897
+ - `mcp__snow-flow__swarm_status` - Monitor coordination effectiveness
898
+ - `mcp__snow-flow__agent_list` - View active cognitive patterns
899
+ - `mcp__snow-flow__agent_metrics` - Track coordination performance
900
+ - `mcp__snow-flow__task_status` - Check workflow progress
901
+ - `mcp__snow-flow__task_results` - Review coordination outcomes
902
902
 
903
903
  ### Memory & Neural Tools:
904
904
 
905
- - `mcp__claude-flow__memory_usage` - Persistent memory across sessions
906
- - `mcp__claude-flow__neural_status` - Neural pattern effectiveness
907
- - `mcp__claude-flow__neural_train` - Improve coordination patterns
908
- - `mcp__claude-flow__neural_patterns` - Analyze thinking approaches
905
+ - `mcp__snow-flow__memory_usage` - Persistent memory across sessions
906
+ - `mcp__snow-flow__neural_status` - Neural pattern effectiveness
907
+ - `mcp__snow-flow__neural_train` - Improve coordination patterns
908
+ - `mcp__snow-flow__neural_patterns` - Analyze thinking approaches
909
909
 
910
910
  ### GitHub Integration Tools (NEW!):
911
911
 
912
- - `mcp__claude-flow__github_swarm` - Create specialized GitHub management swarms
913
- - `mcp__claude-flow__repo_analyze` - Deep repository analysis with AI
914
- - `mcp__claude-flow__pr_enhance` - AI-powered pull request improvements
915
- - `mcp__claude-flow__issue_triage` - Intelligent issue classification
916
- - `mcp__claude-flow__code_review` - Automated code review with swarms
912
+ - `mcp__snow-flow__github_swarm` - Create specialized GitHub management swarms
913
+ - `mcp__snow-flow__repo_analyze` - Deep repository analysis with AI
914
+ - `mcp__snow-flow__pr_enhance` - AI-powered pull request improvements
915
+ - `mcp__snow-flow__issue_triage` - Intelligent issue classification
916
+ - `mcp__snow-flow__code_review` - Automated code review with swarms
917
917
 
918
918
  ### System Tools:
919
919
 
920
- - `mcp__claude-flow__benchmark_run` - Measure coordination efficiency
921
- - `mcp__claude-flow__features_detect` - Available capabilities
922
- - `mcp__claude-flow__swarm_monitor` - Real-time coordination tracking
920
+ - `mcp__snow-flow__benchmark_run` - Measure coordination efficiency
921
+ - `mcp__snow-flow__features_detect` - Available capabilities
922
+ - `mcp__snow-flow__swarm_monitor` - Real-time coordination tracking
923
923
 
924
924
  ## Workflow Examples (Coordination-Focused)
925
925
 
@@ -929,21 +929,21 @@ Once configured, Claude Flow MCP tools enhance Claude Code's coordination:
929
929
 
930
930
  **Step 1:** Set up research coordination
931
931
 
932
- - Tool: `mcp__claude-flow__swarm_init`
932
+ - Tool: `mcp__snow-flow__swarm_init`
933
933
  - Parameters: `{"topology": "mesh", "maxAgents": 5, "strategy": "balanced"}`
934
934
  - Result: Creates a mesh topology for comprehensive exploration
935
935
 
936
936
  **Step 2:** Define research perspectives
937
937
 
938
- - Tool: `mcp__claude-flow__agent_spawn`
938
+ - Tool: `mcp__snow-flow__agent_spawn`
939
939
  - Parameters: `{"type": "researcher", "name": "Literature Review"}`
940
- - Tool: `mcp__claude-flow__agent_spawn`
940
+ - Tool: `mcp__snow-flow__agent_spawn`
941
941
  - Parameters: `{"type": "analyst", "name": "Data Analysis"}`
942
942
  - Result: Different cognitive patterns for Claude Code to use
943
943
 
944
944
  **Step 3:** Coordinate research execution
945
945
 
946
- - Tool: `mcp__claude-flow__task_orchestrate`
946
+ - Tool: `mcp__snow-flow__task_orchestrate`
947
947
  - Parameters: `{"task": "Research neural architecture search papers", "strategy": "adaptive"}`
948
948
  - Result: Claude Code systematically searches, reads, and analyzes papers
949
949
 
@@ -964,19 +964,19 @@ Once configured, Claude Flow MCP tools enhance Claude Code's coordination:
964
964
 
965
965
  **Step 1:** Set up development coordination
966
966
 
967
- - Tool: `mcp__claude-flow__swarm_init`
967
+ - Tool: `mcp__snow-flow__swarm_init`
968
968
  - Parameters: `{"topology": "hierarchical", "maxAgents": 8, "strategy": "specialized"}`
969
969
  - Result: Hierarchical structure for organized development
970
970
 
971
971
  **Step 2:** Define development perspectives
972
972
 
973
- - Tool: `mcp__claude-flow__agent_spawn`
973
+ - Tool: `mcp__snow-flow__agent_spawn`
974
974
  - Parameters: `{"type": "architect", "name": "System Design"}`
975
975
  - Result: Architectural thinking pattern for Claude Code
976
976
 
977
977
  **Step 3:** Coordinate implementation
978
978
 
979
- - Tool: `mcp__claude-flow__task_orchestrate`
979
+ - Tool: `mcp__snow-flow__task_orchestrate`
980
980
  - Parameters: `{"task": "Implement user authentication with JWT", "strategy": "parallel"}`
981
981
  - Result: Claude Code implements features using its native tools
982
982
 
@@ -997,19 +997,19 @@ Once configured, Claude Flow MCP tools enhance Claude Code's coordination:
997
997
 
998
998
  **Step 1:** Initialize GitHub swarm
999
999
 
1000
- - Tool: `mcp__claude-flow__github_swarm`
1000
+ - Tool: `mcp__snow-flow__github_swarm`
1001
1001
  - Parameters: `{"repository": "owner/repo", "agents": 5, "focus": "maintenance"}`
1002
1002
  - Result: Specialized swarm for repository management
1003
1003
 
1004
1004
  **Step 2:** Analyze repository health
1005
1005
 
1006
- - Tool: `mcp__claude-flow__repo_analyze`
1006
+ - Tool: `mcp__snow-flow__repo_analyze`
1007
1007
  - Parameters: `{"deep": true, "include": ["issues", "prs", "code"]}`
1008
1008
  - Result: Comprehensive repository analysis
1009
1009
 
1010
1010
  **Step 3:** Enhance pull requests
1011
1011
 
1012
- - Tool: `mcp__claude-flow__pr_enhance`
1012
+ - Tool: `mcp__snow-flow__pr_enhance`
1013
1013
  - Parameters: `{"pr_number": 123, "add_tests": true, "improve_docs": true}`
1014
1014
  - Result: AI-powered PR improvements
1015
1015
 
@@ -1127,13 +1127,13 @@ See `.claude/commands/` for detailed documentation on all features.
1127
1127
  1. **SPAWN ALL AGENTS IN ONE BATCH** - Use multiple tool calls in a SINGLE message
1128
1128
  2. **EXECUTE TASKS IN PARALLEL** - Never wait for one task before starting another
1129
1129
  3. **USE BATCHTOOL FOR EVERYTHING** - Multiple operations = Single message with multiple tools
1130
- 4. **ALL AGENTS MUST USE COORDINATION TOOLS** - Every spawned agent MUST use claude-flow hooks and memory
1130
+ 4. **ALL AGENTS MUST USE COORDINATION TOOLS** - Every spawned agent MUST use snow-flow hooks and memory
1131
1131
 
1132
1132
  ### 🎯 AGENT COUNT CONFIGURATION
1133
1133
 
1134
1134
  **CRITICAL: Dynamic Agent Count Rules**
1135
1135
 
1136
- 1. **Check CLI Arguments First**: If user runs `npx claude-flow@alpha --agents 5`, use 5 agents
1136
+ 1. **Check CLI Arguments First**: If user runs `npx snow-flow --agents 5`, use 5 agents
1137
1137
  2. **Auto-Decide if No Args**: Without CLI args, analyze task complexity:
1138
1138
  - Simple tasks (1-3 components): 3-4 agents
1139
1139
  - Medium tasks (4-6 components): 5-7 agents
@@ -1147,7 +1147,7 @@ See `.claude/commands/` for detailed documentation on all features.
1147
1147
  **Example Auto-Decision Logic:**
1148
1148
 
1149
1149
  ```javascript
1150
- // If CLI args provided: npx claude-flow@alpha --agents 6
1150
+ // If CLI args provided: npx snow-flow --agents 6
1151
1151
  maxAgents = CLI_ARGS.agents || determineAgentCount(task);
1152
1152
 
1153
1153
  function determineAgentCount(task) {
@@ -1230,12 +1230,12 @@ Message 6: TodoWrite (another single todo)
1230
1230
  ```
1231
1231
  Message 1: [BatchTool]
1232
1232
  // MCP coordination setup
1233
- - mcp__claude-flow__swarm_init
1234
- - mcp__claude-flow__agent_spawn (researcher)
1235
- - mcp__claude-flow__agent_spawn (coder)
1236
- - mcp__claude-flow__agent_spawn (analyst)
1237
- - mcp__claude-flow__agent_spawn (tester)
1238
- - mcp__claude-flow__agent_spawn (coordinator)
1233
+ - mcp__snow-flow__swarm_init
1234
+ - mcp__snow-flow__agent_spawn (researcher)
1235
+ - mcp__snow-flow__agent_spawn (coder)
1236
+ - mcp__snow-flow__agent_spawn (analyst)
1237
+ - mcp__snow-flow__agent_spawn (tester)
1238
+ - mcp__snow-flow__agent_spawn (coordinator)
1239
1239
 
1240
1240
  Message 2: [BatchTool - Claude Code execution]
1241
1241
  // Task agents with full coordination instructions
@@ -1269,7 +1269,7 @@ When given ANY complex task with swarms:
1269
1269
  STEP 1: IMMEDIATE PARALLEL SPAWN (Single Message!)
1270
1270
  [BatchTool]:
1271
1271
  // IMPORTANT: Check CLI args for agent count, otherwise auto-decide based on task complexity
1272
- - mcp__claude-flow__swarm_init {
1272
+ - mcp__snow-flow__swarm_init {
1273
1273
  topology: "hierarchical",
1274
1274
  maxAgents: CLI_ARGS.agents || AUTO_DECIDE(task_complexity), // Use CLI args or auto-decide
1275
1275
  strategy: "parallel"
@@ -1277,19 +1277,19 @@ STEP 1: IMMEDIATE PARALLEL SPAWN (Single Message!)
1277
1277
 
1278
1278
  // Spawn agents based on maxAgents count and task requirements
1279
1279
  // If CLI specifies 3 agents, spawn 3. If no args, auto-decide optimal count (3-12)
1280
- - mcp__claude-flow__agent_spawn { type: "architect", name: "System Designer" }
1281
- - mcp__claude-flow__agent_spawn { type: "coder", name: "API Developer" }
1282
- - mcp__claude-flow__agent_spawn { type: "coder", name: "Frontend Dev" }
1283
- - mcp__claude-flow__agent_spawn { type: "analyst", name: "DB Designer" }
1284
- - mcp__claude-flow__agent_spawn { type: "tester", name: "QA Engineer" }
1285
- - mcp__claude-flow__agent_spawn { type: "researcher", name: "Tech Lead" }
1286
- - mcp__claude-flow__agent_spawn { type: "coordinator", name: "PM" }
1280
+ - mcp__snow-flow__agent_spawn { type: "architect", name: "System Designer" }
1281
+ - mcp__snow-flow__agent_spawn { type: "coder", name: "API Developer" }
1282
+ - mcp__snow-flow__agent_spawn { type: "coder", name: "Frontend Dev" }
1283
+ - mcp__snow-flow__agent_spawn { type: "analyst", name: "DB Designer" }
1284
+ - mcp__snow-flow__agent_spawn { type: "tester", name: "QA Engineer" }
1285
+ - mcp__snow-flow__agent_spawn { type: "researcher", name: "Tech Lead" }
1286
+ - mcp__snow-flow__agent_spawn { type: "coordinator", name: "PM" }
1287
1287
  - TodoWrite { todos: [multiple todos at once] }
1288
1288
 
1289
1289
  STEP 2: PARALLEL TASK EXECUTION (Single Message!)
1290
1290
  [BatchTool]:
1291
- - mcp__claude-flow__task_orchestrate { task: "main task", strategy: "parallel" }
1292
- - mcp__claude-flow__memory_usage { action: "store", key: "init", value: {...} }
1291
+ - mcp__snow-flow__task_orchestrate { task: "main task", strategy: "parallel" }
1292
+ - mcp__snow-flow__memory_usage { action: "store", key: "init", value: {...} }
1293
1293
  - Multiple Read operations
1294
1294
  - Multiple Write operations
1295
1295
  - Multiple Bash commands
@@ -1334,13 +1334,13 @@ Dependencies: ↳ X deps | Actionable: ▶
1334
1334
  // ✅ CORRECT: SINGLE MESSAGE with ALL operations
1335
1335
  [BatchTool - Message 1]:
1336
1336
  // Initialize and spawn ALL agents at once
1337
- mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 8, strategy: "parallel" }
1338
- mcp__claude-flow__agent_spawn { type: "architect", name: "System Designer" }
1339
- mcp__claude-flow__agent_spawn { type: "coder", name: "API Developer" }
1340
- mcp__claude-flow__agent_spawn { type: "coder", name: "Auth Expert" }
1341
- mcp__claude-flow__agent_spawn { type: "analyst", name: "DB Designer" }
1342
- mcp__claude-flow__agent_spawn { type: "tester", name: "Test Engineer" }
1343
- mcp__claude-flow__agent_spawn { type: "coordinator", name: "Lead" }
1337
+ mcp__snow-flow__swarm_init { topology: "hierarchical", maxAgents: 8, strategy: "parallel" }
1338
+ mcp__snow-flow__agent_spawn { type: "architect", name: "System Designer" }
1339
+ mcp__snow-flow__agent_spawn { type: "coder", name: "API Developer" }
1340
+ mcp__snow-flow__agent_spawn { type: "coder", name: "Auth Expert" }
1341
+ mcp__snow-flow__agent_spawn { type: "analyst", name: "DB Designer" }
1342
+ mcp__snow-flow__agent_spawn { type: "tester", name: "Test Engineer" }
1343
+ mcp__snow-flow__agent_spawn { type: "coordinator", name: "Lead" }
1344
1344
 
1345
1345
  // Update ALL todos at once - NEVER split todos!
1346
1346
  TodoWrite { todos: [
@@ -1355,10 +1355,10 @@ Dependencies: ↳ X deps | Actionable: ▶
1355
1355
  ]}
1356
1356
 
1357
1357
  // Start orchestration
1358
- mcp__claude-flow__task_orchestrate { task: "Build REST API", strategy: "parallel" }
1358
+ mcp__snow-flow__task_orchestrate { task: "Build REST API", strategy: "parallel" }
1359
1359
 
1360
1360
  // Store initial memory
1361
- mcp__claude-flow__memory_usage { action: "store", key: "project/init", value: { started: Date.now() } }
1361
+ mcp__snow-flow__memory_usage { action: "store", key: "project/init", value: { started: Date.now() } }
1362
1362
 
1363
1363
  [BatchTool - Message 2]:
1364
1364
  // Create ALL directories at once
@@ -1389,9 +1389,9 @@ Dependencies: ↳ X deps | Actionable: ▶
1389
1389
 
1390
1390
  ```javascript
1391
1391
  // ❌ WRONG: Multiple messages, one operation each
1392
- Message 1: mcp__claude-flow__swarm_init
1393
- Message 2: mcp__claude-flow__agent_spawn (just one agent)
1394
- Message 3: mcp__claude-flow__agent_spawn (another agent)
1392
+ Message 1: mcp__snow-flow__swarm_init
1393
+ Message 2: mcp__snow-flow__agent_spawn (just one agent)
1394
+ Message 3: mcp__snow-flow__agent_spawn (another agent)
1395
1395
  Message 4: TodoWrite (single todo)
1396
1396
  Message 5: Write (single file)
1397
1397
  // This is 5x slower and wastes swarm coordination!
@@ -1403,7 +1403,7 @@ Every agent coordination step MUST use memory:
1403
1403
 
1404
1404
  ```
1405
1405
  // After each major decision or implementation
1406
- mcp__claude-flow__memory_usage
1406
+ mcp__snow-flow__memory_usage
1407
1407
  action: "store"
1408
1408
  key: "swarm-{id}/agent-{name}/{step}"
1409
1409
  value: {
@@ -1415,12 +1415,12 @@ mcp__claude-flow__memory_usage
1415
1415
  }
1416
1416
 
1417
1417
  // To retrieve coordination data
1418
- mcp__claude-flow__memory_usage
1418
+ mcp__snow-flow__memory_usage
1419
1419
  action: "retrieve"
1420
1420
  key: "swarm-{id}/agent-{name}/{step}"
1421
1421
 
1422
1422
  // To check all swarm progress
1423
- mcp__claude-flow__memory_usage
1423
+ mcp__snow-flow__memory_usage
1424
1424
  action: "list"
1425
1425
  pattern: "swarm-{id}/*"
1426
1426
  ```
@@ -1430,7 +1430,7 @@ mcp__claude-flow__memory_usage
1430
1430
  1. **Batch Everything**: Never operate on single files when multiple are needed
1431
1431
  2. **Parallel First**: Always think "what can run simultaneously?"
1432
1432
  3. **Memory is Key**: Use memory for ALL cross-agent coordination
1433
- 4. **Monitor Progress**: Use mcp**claude-flow**swarm_monitor for real-time tracking
1433
+ 4. **Monitor Progress**: Use mcp**snow-flow**swarm_monitor for real-time tracking
1434
1434
  5. **Auto-Optimize**: Let hooks handle topology and agent selection
1435
1435
 
1436
1436
  ### 🎨 VISUAL SWARM STATUS
@@ -1513,10 +1513,10 @@ Claude Flow extends the base coordination with:
1513
1513
 
1514
1514
  ## Support
1515
1515
 
1516
- - Documentation: https://github.com/ruvnet/claude-flow
1517
- - Issues: https://github.com/ruvnet/claude-flow/issues
1518
- - Examples: https://github.com/ruvnet/claude-flow/tree/main/examples
1516
+ - Documentation: https://github.com/groeimetai/snow-flow
1517
+ - Issues: https://github.com/groeimetai/snow-flow/issues
1518
+ - Examples: https://github.com/groeimetai/snow-flow/tree/main/examples
1519
1519
 
1520
1520
  ---
1521
1521
 
1522
- Remember: **Claude Flow coordinates, Claude Code creates!** Start with `mcp__claude-flow__swarm_init` to enhance your development workflow.
1522
+ Remember: **Snow-Flow coordinates, Claude Code creates!** Start with `mcp__snow-flow__swarm_init` to enhance your development workflow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.4.11",
3
+ "version": "1.4.12",
4
4
  "description": "Snow-Flow: ServiceNow Advanced Intelligence Platform - 14 AI-powered analysis tools with multi-agent orchestration. Zero Mock Data, 100% Real API Integration. Revolutionize ServiceNow development with hive-mind intelligence.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",