Remote OpenClaw Blog
Claude Flow: What It Is Now and How to Use It (2026)
7 min read ·
Claude Flow is an open source multi-agent orchestration framework built on top of Claude Code, created by Reuven Cohen (ruvnet), and the first thing to know in 2026 is that it has a new name: the project was renamed Ruflo, and the repository at github.com/ruvnet/claude-flow now redirects to ruvnet/ruflo, which holds 63,120 stars and 7,434 forks as of July 5, 2026. Same maintainer, same swarm-and-hive-mind idea, new architecture. This guide covers what Claude Flow does, how the renamed project works, how to install it, and an honest read on who actually needs it.
What Is Claude Flow?
Claude Flow is a coordination layer that turns Claude Code from one agent into many: instead of a single agent working through a task list sequentially, it deploys swarms of specialized agents (coder, tester, reviewer, security, documentation roles) that work in parallel and coordinate through shared memory. The project launched on GitHub around June 2025 as ruvnet/claude-flow and became one of the most-starred projects in the Claude Code ecosystem.
The current README describes it as "the leading agent meta-harness," and frames the design as "Agent = Model + Harness": the model writes, while the harness supplies tools, memory, loops, sandboxes, and controls. In practical terms, you give it an objective, it spins up an agent topology, distributes the work, and persists what the agents learn between sessions.
Claude Flow Is Now Ruflo
The project you find when searching "claude flow" today lives at github.com/ruvnet/ruflo; the rename from claude-flow to Ruflo happened in early 2026, and it was more than a rebrand. As a DEV Community retrospective describes it, the transition involved a full architectural shift (including Rust/WASM components) and a move from rigid sequential phases toward composable, skills-based orchestration.
What that means for you in July 2026:
- The old GitHub URL 301-redirects to ruvnet/ruflo, so existing links still resolve.
- Releases move fast: the repo shipped v3.25.0 on July 5, 2026, and the npm packages (
rufloand the legacyclaude-flow) track the same version. - Most tutorials online still reference claude-flow v2.x commands like
npx claude-flow@alpha init; they predate the rename, and the wizard-based Ruflo flow has replaced much of that surface.
How It Works: Swarms, Hive-Mind, Memory, SPARC
Ruflo's architecture rests on four pillars: swarm topologies, hive-mind coordination, persistent vector memory, and an optional structured methodology called SPARC.
| Pillar | What it does |
|---|---|
| Swarm topologies | Agents are arranged in hierarchical, mesh, or adaptive topologies depending on the task shape, with 100+ specialized agent roles available per the README |
| Hive-mind coordination | A queen-led model where a coordinating agent directs specialized workers that share state, described in the project's Hive-Mind wiki |
| Memory | AgentDB, a persistent store with vector search (HNSW indexing), so agents recall context across sessions instead of starting cold |
| MCP tools | Roughly 210 MCP tools exposed to agents for coordination, memory, and task management, per the README |
| SPARC | A five-phase methodology (Specification, Pseudocode, Architecture, Refinement, Completion) with quality gates, now packaged as the ruflo-sparc plugin |
The pitch versus plain Claude Code, in the project's own words: with it, agents form swarms with shared memory and consensus; without it, you handle orchestration manually. Whether that tradeoff is worth the added machinery is the real question, covered below.
How to Install Claude Flow (Ruflo)
Installation takes one command, and there are two supported paths as of July 2026: the full CLI harness or a lighter Claude Code plugin.
# Full harness: interactive setup wizard
npx ruflo@latest init wizard
# Lighter path: install as a Claude Code plugin
/plugin install ruflo-core@ruflo
The wizard walks through project setup, agent configuration, and MCP registration. Prerequisites are Node.js and a working Claude Code installation with an authenticated account, since Ruflo orchestrates Claude Code rather than replacing it; if you are new to that side, start with our complete Claude Code guide. Because swarms run many agents in parallel, expect token consumption several times higher than single-agent sessions, which matters on metered API billing.
Honest Assessment: Who Needs It
Claude Flow is genuinely popular (63k+ stars) and genuinely heavy, and both facts should inform your decision. The case for it: large, parallelizable workloads such as sweeping refactors, test-suite generation across a big codebase, or multi-service scaffolding, where coordinated agents with shared memory beat one agent grinding sequentially.
The case against adopting it casually:
- Project-reported claims: the README's performance multipliers (for example, vector-search speedups) come from the project itself; we found no independent benchmarks verifying them, and we have not benchmarked it ourselves.
- Complexity tax: the DEV Community retrospective calls it massive overkill for single-agent problems, and that matches the architecture: queens, workers, topologies, and 200+ tools are a lot of machinery for everyday tasks.
- Churn: a rename, a major architectural rewrite, and rapid versioning within a year means documentation and third-party tutorials go stale quickly.
- Native overlap: Claude Code itself now ships subagents and agent teams, which cover a growing share of what people originally installed claude-flow for.
Alternatives
Before adding a meta-harness, exhaust the native options: Claude Code's built-in subagents and agent teams handle parallel specialist work without any third-party dependency, and our best Claude Code subagents roundup shows how far that gets you. If you are building orchestration into your own product rather than your terminal, the Claude Agent SDK exposes the same harness programmatically in Python and TypeScript.
Ruflo's honest niche is the layer above both: persistent cross-session memory, consensus mechanisms, and very large agent counts. For a wider survey of orchestration options beyond the Claude ecosystem, see our AI agent frameworks comparison.
Limitations and Tradeoffs
This guide is based on the project's repository, wiki, and third-party write-ups as of July 5, 2026, not on production deployments we ran ourselves, and Ruflo moves fast enough that version specifics will drift. The framework's own tradeoffs: high token burn from parallel agents, a real learning curve, project-reported benchmarks, and dependence on a single prolific maintainer's direction. None of that makes it a bad tool; it makes it a tool you adopt deliberately for swarm-shaped problems rather than by default.
Related Guides
- Claude Code Agent Teams: Setup and Orchestration Guide
- Best Claude Code Subagents in 2026
- Claude SDK Guide: Agent SDK vs Client SDKs Explained
- AI Agent Frameworks Compared
Go deeper
The operator playbooks
Production-ready PDF guides for OpenClaw and Hermes Agent — $19.99 each.
Skills for this topic
Browse all skills →Frequently Asked Questions
What is claude-flow?
Claude Flow is an open source orchestration framework by Reuven Cohen (ruvnet) that runs swarms of specialized AI agents on top of Claude Code, coordinated through hive-mind patterns and shared persistent memory. In 2026 the project was renamed Ruflo and lives at github.com/ruvnet/ruflo.





