TL;DR
Ruflo crossed 37,700 GitHub stars this week, adding nearly 1,900 in a single day. It turns Claude Code into a coordinated swarm of 100+ specialized agents with MCP integration, distributed vector memory, and zero-trust agent federation.
Read next
Ruflo hit the top of GitHub trending this week with 35k stars. It turns Claude Code into a multi-agent platform with swarm coordination, vector memory, and cross-machine federation.
7 min readRuflo is an open-source multi-agent orchestration platform built specifically for Claude, shipping 100+ specialized agents, vector memory with HNSW indexing, and zero-trust federation across machines.
6 min readagentmemory is a self-hosted MCP server that gives Claude Code, Cursor, and Gemini CLI searchable long-term memory across sessions - with 12 auto-capture hooks and 51 tools, no external database required.
6 min readRuflo crossed 37,700 GitHub stars this week, adding nearly 1,900 in a single day - a velocity that puts it among the fastest-rising Claude Code extensions on the platform right now. The project, built by rUv (ruvnet), describes itself as an agent orchestration platform that plugs directly into Claude Code and turns a single coding assistant into a coordinated swarm of 100+ specialized agents. For developers already exploring multi-agent workflows, that framing is immediately legible. For everyone else, the star count alone is worth pausing on. The timing lands squarely in the current wave of interest around agent-to-agent coordination and MCP-based tooling, which helps explain why it spread so quickly.
Ruflo extends Claude Code via its plugin system, adding swarm intelligence, distributed memory, and cross-machine agent federation to what would otherwise be a single-agent session. At the core is a hierarchical coordination layer that supports three topologies: hierarchical (a lead agent delegates subtasks), mesh (all agents communicate peer-to-peer), and adaptive (the system selects the topology dynamically based on task type).
The memory system is called AgentDB - an HNSW-indexed vector store with sub-millisecond retrieval that persists learned context across sessions. Ruflo claims 150x to 12,500x faster search compared to naive approaches, though that range is wide enough to warrant independent benchmarking before designing a system around it.
Beyond memory, Ruflo ships with 32 native Claude Code plugins covering code generation, test generation, security auditing, documentation, domain-driven design, observability, and cost tracking. A learning layer called SONA neural patterns and a trajectory recorder called ReasoningBank allow the system to adapt agent behavior over time based on what has worked in previous sessions.
Federation is the most unusual feature: zero-trust agent federation enables agents running on different machines - or across organizational boundaries - to collaborate on shared tasks. Each agent instance uses the MCP (Model Context Protocol) server for tool access, so it composes naturally with the broader MCP ecosystem. The project exposes 210+ MCP tools in total.
The underlying architecture uses WebAssembly kernels written in Rust for the policy engine, embeddings layer, and proof system. The main application is TypeScript (66% of the repo), with JavaScript (21.5%), Python (7.9%), and Shell scripts making up most of the rest.
The fastest path is through Claude Code's plugin marketplace:
/plugin marketplace add ruvnet/ruflo
/plugin install ruflo-core@ruflo
/plugin install ruflo-swarm@ruflo
Additional plugins can be layered in for autopilot, federation, RAG memory, and browser automation:
/plugin install ruflo-autopilot@ruflo
/plugin install ruflo-federation@ruflo
/plugin install ruflo-agentdb@ruflo
If you prefer a CLI-first setup, the installer script handles dependencies automatically:
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/ruflo@main/scripts/install.sh | bash
Or via npm for a global install:
npm install -g ruflo@latest
ruflo init --wizardThere is also an MCP server entry point that works with any MCP-compatible client:
claude mcp add ruflo -- npx -y @claude-flow/cli@latest
No-account demos are available at flo.ruv.io (multi-model chat interface) and goal.ruv.io (natural-language goal planner that converts plain-English objectives into executable agent task graphs). These are the fastest way to see the coordination layer in action without committing to a full install.
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
Ruflo is best suited for developers who have already hit the ceiling of single-agent Claude workflows and need coordination rather than more tokens. Practically, that means a few distinct groups.
Engineering teams building internal automation - if your workflow requires parallel subtasks (generate tests while writing docs while auditing security), Ruflo's swarm topologies let you define those relationships declaratively instead of managing agent spawning manually in application code.
Builders exploring MCP-based tooling - the 210+ MCP tools Ruflo exposes are a meaningful head start for anyone building MCP-native applications. Rather than sourcing and configuring tools one by one, you get a curated set already integrated with Claude Code and ready to compose.
Developers who need cross-machine coordination - the zero-trust federation model is unusual at this price point (free, MIT-licensed open source). Most alternatives that offer cross-organizational agent collaboration require a managed platform with associated per-seat or per-token costs.
Research and prototyping contexts - the SONA learning layer and ReasoningBank trajectory capture make Ruflo more interesting as a research platform than a typical plugin. If you want to study how agent behavior adapts across sessions, the architecture provides hooks that are not common in simpler tools.
It is less suited for developers who want a lightweight Claude Code enhancement. Ruflo is a heavyweight dependency - 1,471 releases at version 3.6.10 at time of writing, with 406 open issues - and the learning curve reflects its scope.
Ruflo sits at the intersection of several topics this site covers closely.
The MCP layer maps directly onto the server catalog at mcp.developersdigest.tech. Several of Ruflo's 210+ tools overlap with what you'll find in that directory, and installing Ruflo is effectively a way to deploy a curated MCP server stack in a single command rather than configuring servers individually. If you're using the DevDigest MCP directory for discovery, Ruflo is worth cross-referencing as a runtime that bundles many of those tools together.
The plugin model connects to the skills ecosystem at skills.developersdigest.tech. Ruflo's 32 native plugins function like Claude Code skills - they extend what the agent can do in a specific domain without changing the core model. The distinction is that Ruflo plugins are stateful and can invoke each other, which makes them closer to managed agents than standalone skills. That is a meaningful architectural difference if you are deciding between composing individual skills versus adopting a full orchestration layer.
The multi-agent coordination angle is covered in the DevDigest managed agents guide at subagent.developersdigest.tech. Ruflo's hierarchical and mesh topologies are concrete implementations of the patterns discussed there - it is a useful reference implementation for developers moving from conceptual understanding of agent coordination to working code.
Ruflo's strengths are real. The plugin ecosystem is unusually broad for an open-source project at this stage. The MCP integration is native rather than bolted on. The zero-trust federation model is not something you will find in most Claude Code extensions, and the live demos lower the evaluation barrier without requiring an account.
The limitations deserve equal attention. The release cadence - 1,471 releases as of early May 2026 - suggests either very active development or a tendency to cut versions before stabilization. The 406 open issues is a meaningful signal for anyone considering production use. Some of the performance claims are wide enough to be almost unfalsifiable in isolation: a 150x to 12,500x search improvement is not a number that translates easily into a production planning decision.
The WASM kernel and Rust proof system are interesting architectural choices, but they also mean the dependency surface is larger than a typical TypeScript plugin. Budget time for a real setup and debugging cycle before committing to Ruflo in a critical workflow.
For builders who treat it as an experimental runtime - a way to explore what coordinated Claude agents can actually do in practice - Ruflo is one of the more ambitious open-source Claude extensions to appear this year. For production teams, the open issue count and release velocity are worth monitoring before committing.
Technical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Anthropic's agentic coding CLI. Runs in your terminal, edits files autonomously, spawns sub-agents, and maintains memory...
View ToolGives AI agents access to 250+ external tools (GitHub, Slack, Gmail, databases) with managed OAuth. Handles the auth and...
View ToolTypeScript-first AI agent framework. Agents, tools, memory, workflows, RAG, evals, tracing, MCP, and production deployme...
View ToolInteractive TUI dashboard that shows exactly where your Claude Code and Cursor tokens are going, in real time.
View ToolDesign subagents visually instead of editing YAML by hand.
View AppEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsRoute specific MCP servers only to specific subagents.
Claude CodeLocal, project, user, and plugin-level MCP configurations.
Claude Code
Nimbalyst Demo: A Visual Workspace for Codex + Claude Code with Kanban, Plans, and AI Commits Try it: https://nimbalyst.com/ Star Repo Here: https://github.com/Nimbalyst/nimbalyst This video demos N...

Composio: Connect AI Agents to 1,000+ Apps via CLI (Gmail, Google Docs/Sheets, Hacker News Workflows) Check out Composio here: http://dashboard.composio.dev/?utm_source=Youtube&utm_channel=0426&utm_...

Anthropic has released Channels for Claude Code, enabling external events (CI alerts, production errors, PR comments, Discord/Telegram messages, webhooks, cron jobs, logs, and monitoring signals) to b...
agentmemory is a self-hosted MCP server that gives Claude Code, Cursor, and Gemini CLI searchable long-term memory acros...
agentmemory gives AI coding agents a persistent brain - capturing session context automatically via 12 Claude Code hooks...
CodeGraph builds a local SQLite index of your codebase so Claude Code, Cursor, and Codex CLI spend far fewer tokens expl...
CodeGraph hit 7,800+ stars with 1,900 added in a single day - a local MCP knowledge graph that lets Claude Code explore...
zilliztech/claude-context is an MCP server that indexes your entire codebase with hybrid vector search, letting Claude C...
zilliztech/claude-context landed on GitHub's daily trending list with 873 new stars today - here's what this Claude Code...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.