Agent skill · AI & Agents

hive-mind

Byzantine fault-tolerant consensus and distributed coordination. Queen-led hierarchical swarm management with multiple consensus strategies. Use when: distributed coordination, fault-tolerant operations, multi-agent consensus, collective decision making. Skip when: single-agent tasks, simple operations, local-only work.

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill hive-mind --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: .agents/skills/hive-mind/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hive-Mind Skill ## Purpose Byzantine fault-tolerant consensus and distributed swarm coordination. ## When to Trigger - Multi-agent distributed tasks - Fault-tolerant operations needed - Collective decision making - Complex coordination patterns ## Topologies | Topology | Description | Use Case | |----------|-------------|----------| | `hierarchical` | Queen controls workers | Default, anti-drift | | `mesh` | Fully connected peers | Research, exploration | | `hierarchical-mesh` | Hybrid | Recommended for complex | | `adaptive` | Dynamic based on load | Auto-scaling | ## Consensus Strategies | Strategy | Tolerance | Use Case | |----------|-----------|----------| | `byzantine` | f < n/3 faulty | Untrusted environment | | `raft` | f < n/2 faulty | Leader-based, consistent | | `gossip` | Eventual | Large scale, availability | | `crdt` | Conflict-free | Concurrent updates | | `quorum` | Configurable | Tunable consistency | ## Commands ### Initialize Hive-Mind ```bash npx claude-flow hive-mind init --topology hierarchical-mesh --consensus raft ``` ### Spawn Queen ```bash npx claude-flow hive-mind spawn --role queen --name coordinator ``` ### Check Consensus Status ```bash npx claude-flo

What's inside
Steps it walks through
  1. Purpose
  2. When to Trigger
  3. Topologies
  4. Consensus Strategies
  5. Commands
  6. Initialize Hive-Mind
  7. Spawn Queen
  8. Check Consensus Status
  9. View Sessions
  10. Best Practices
Commands it runs
npx claude-flow hive-mind init --topology hierarchical-mesh --consensus raft
npx claude-flow hive-mind spawn --role queen --name coordinator
npx claude-flow hive-mind consensus --status
npx claude-flow hive-mind sessions --active
More from ruflo
All skills →
About this skill
What does the hive-mind skill do?

Byzantine fault-tolerant consensus and distributed coordination. Queen-led hierarchical swarm management with multiple consensus strategies. Use when: distributed coordination, fault-tolerant operations, multi-agent consensus, collective decision making. Skip when: single-agent tasks, simple operations, local-only work.

How do I install it?

Run `npx skills add ruvnet/ruflo --skill hive-mind --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going