If you're building a distributed system that needs strong consistency, this handles the Raft consensus protocol for you. It manages leader election with randomized timeouts to avoid split votes, replicates logs across followers, and coordinates recovery after network partitions. The skill covers the full lifecycle including membership changes and log compaction through snapshots. Honestly, Raft is well understood but tricky to implement correctly, so having this coordinate the state transitions and heartbeats saves you from debugging subtle timing bugs at 2am. Works with quorum management and can integrate with CRDT systems when you need eventual consistency fallbacks.
npx skills add https://github.com/ruvnet/ruflo --skill agent-raft-manager