This coordinator sets up a peer-to-peer mesh network where agents communicate directly without a single point of control. It uses gossip protocols for information sharing, Byzantine fault tolerance for consensus, and supports work stealing plus DHT-based task distribution. You'd reach for this when you need a swarm that can lose a third of its nodes and keep running, or when centralized coordination becomes a bottleneck. The implementation hooks into claude-flow's DAA tools for peer messaging and consensus voting. Fair warning, the complexity overhead is real. Most tasks don't need this level of resilience, but for long-running distributed work where reliability matters more than simplicity, the tradeoff makes sense.
npx skills add https://github.com/ruvnet/ruflo --skill agent-mesh-coordinator