15 lines
331 B
Bash
15 lines
331 B
Bash
#!/bin/bash
|
|
# Swarm Orchestration - Start Script
|
|
# Initialize swarm with default anti-drift settings
|
|
|
|
set -e
|
|
|
|
echo "Initializing hierarchical swarm..."
|
|
npx @claude-flow/cli swarm init \
|
|
--topology hierarchical \
|
|
--max-agents 8 \
|
|
--strategy specialized
|
|
|
|
echo "Swarm initialized successfully"
|
|
npx @claude-flow/cli swarm status
|