This handles dynamic quorum management for distributed consensus systems, calculating optimal quorum sizes based on network conditions, node health, and partition risk. You'd use it when running Raft, Paxos, or similar protocols where you need to balance availability against consistency guarantees as your cluster topology changes. The implementation includes multiple adjustment strategies (network-based, performance-based, fault-tolerance-based) that it evaluates and selects from, plus rollback capability if adjustments fail. Worth noting it supports weighted voting, which is useful if your nodes have different capabilities or trust levels. The tradeoff analysis between fault tolerance and availability is the real value here, since getting quorum math wrong in production can lock up your entire system.
npx skills add https://github.com/ruvnet/ruflo --skill agent-quorum-manager