snow-flow 4.3.4 → 4.3.5
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/dist/cli.js +5 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -816,10 +816,11 @@ TodoWrite([
|
|
|
816
816
|
### 4. Agent Spawning Strategy
|
|
817
817
|
Based on the task analysis, spawn ${taskAnalysis.estimatedAgentCount} agents in smart batches:
|
|
818
818
|
|
|
819
|
-
**Agent Spawn Order:**
|
|
820
|
-
1. **
|
|
821
|
-
2. **
|
|
822
|
-
3. **Use
|
|
819
|
+
**Agent Spawn Order (Use Snow-Flow MCP Tools):**
|
|
820
|
+
1. **Initialize Swarm**: \`swarm_init({ topology: 'hierarchical', maxAgents: ${parseInt(options.maxAgents)} })\`
|
|
821
|
+
2. **Primary Agent**: \`agent_spawn({ type: '${taskAnalysis.primaryAgent}', name: 'Primary${taskAnalysis.primaryAgent.split('-').map(w => w.charAt(0).toUpperCase() + w.slice(1)).join('')}' })\`
|
|
822
|
+
3. **Supporting Agents**: Use \`agent_spawn\` for each: ${taskAnalysis.supportingAgents.map(agent => `'${agent}'`).join(', ')}
|
|
823
|
+
4. **Coordination**: \`task_orchestrate({ task: '${objective}', strategy: 'adaptive' })\`
|
|
823
824
|
|
|
824
825
|
### 5. Memory Coordination Pattern
|
|
825
826
|
All agents MUST use this simple memory coordination:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.5",
|
|
4
4
|
"description": "Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|