This coordinates gossip protocols for eventually consistent distributed systems, handling the epidemic dissemination patterns you need when nodes need to sync state without central coordination. It manages push/pull gossip cycles, peer selection, and anti-entropy protocols using Merkle trees and vector clocks for conflict detection. You'd reach for this when building systems that prioritize availability and partition tolerance over immediate consistency, like distributed caches or membership services. The hooks show it's tracking convergence and peer topology, which is critical since gossip protocols can be tricky to debug when they don't converge as expected. Works alongside CRDT synchronizers and quorum managers if you're building something more sophisticated than basic rumor spreading.
npx skills add https://github.com/ruvnet/ruflo --skill agent-gossip-coordinator