cloud-swarm
Installation
SKILL.md
Cloud Swarm Orchestration
Deploy, coordinate, and scale multi-agent swarms in Flow Nexus cloud for complex task execution.
Quick Start
// Initialize a swarm with mesh topology
mcp__flow-nexus__swarm_init({
topology: "mesh",
maxAgents: 8,
strategy: "balanced"
})
// Deploy specialized agents
mcp__flow-nexus__agent_spawn({ type: "researcher", name: "Lead Researcher" })
mcp__flow-nexus__agent_spawn({ type: "coder", name: "Implementation Expert" })