TL;DR
Ruflo 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.
Read next
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.
7 min readRuflo 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 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 (ruvnet/ruflo) jumped from relative obscurity to 48,200 stars this week, adding nearly 12,000 stars in seven days. That kind of velocity - about 1,700 stars per day - signals more than algorithmic noise. It reflects a specific moment in the Claude ecosystem: teams are moving from single-agent demos to multi-agent production pipelines, and purpose-built orchestration infrastructure is scarce.
The timing is not accidental. Claude's extended context, tool-use capabilities, and Claude Code's plugin system have made coordinated agent swarms practical. Ruflo aims to be the coordination layer. The project is MIT-licensed and entirely open-source.
Ruflo is a multi-agent orchestration platform designed around Claude as the primary model, though it supports GPT, Gemini, Cohere, and Ollama as fallback providers. The core value is coordination - not just running one agent at a time, but managing fleets of specialized agents that collaborate on tasks.
The platform ships three main layers:
Agent roster. 100+ pre-defined specialist agents covering coding, testing, security auditing, documentation, architecture review, and domain areas like IoT and neural trading. Each agent has a defined role and is activated through the platform's routing layer.
Memory infrastructure. Ruflo uses HNSW (Hierarchical Navigable Small World) vector indexing for agent memory, claiming 150 to 12,500 times faster search compared to brute-force approaches. This matters for long-running workflows where agents need to recall earlier context without re-reading full conversation histories.
Self-learning loop. The platform uses SONA neural patterns and trajectory learning - agents log their decisions and outcomes, and the system adjusts routing and context over time. The documentation is sparse on implementation details here, so treat this as an architectural direction rather than a fully verified feature.
The plugin ecosystem is where Ruflo gets immediately practical: 32 native Claude Code plugins covering orchestration (ruflo-core, ruflo-swarm), memory (ruflo-agentdb, ruflo-rag-memory), security (ruflo-security-audit, ruflo-aidefence), testing (ruflo-testgen), and DevOps (ruflo-observability, ruflo-cost-tracker).
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
May 9, 2026 • 9 min read
May 9, 2026 • 6 min read
May 8, 2026 • 8 min read
May 8, 2026 • 6 min read
The fastest path is the NPX wizard, which walks through configuration interactively:
npx ruflo@latest init wizard
For MCP integration with Claude Code:
claude mcp add ruflo -- npx ruflo@latest mcp start
For the Claude Code plugin path - lighter surface area, zero local workspace files:
/plugin marketplace add ruvnet/ruflo
/plugin install ruflo-core@ruflo
/plugin install ruflo-swarm@ruflo
For global installation:
npm install -g ruflo@latestThe project offers two deployment profiles. The plugin path gives you slash commands and agent definitions with no local files - good for experimentation. The CLI install deploys the full 98-agent system, 60+ commands, .claude/ configuration, and MCP server - better for production use cases. The CLI path is documented in the repository's user guide.
Ruflo is most useful for developers who have already hit the limits of single-agent Claude workflows and need:
Parallel task execution. If you are running sequential agents manually and seeing long wall-clock times, Ruflo's swarm coordination can fan out work across specialized agents simultaneously. The platform supports hierarchical (queen-led) and mesh topologies with Raft and Byzantine consensus options.
Persistent cross-session memory. The HNSW vector store gives agents recall that survives across Claude sessions - relevant for long-running projects, customer-facing bots, or any workflow where context accumulation matters beyond a single conversation window.
Enterprise compliance requirements. The zero-trust federation layer includes mTLS with ed25519 identity verification, a 14-type PII detection pipeline with BLOCK, REDACT, HASH, and PASS policies, behavioral trust scoring, and HIPAA/SOC2/GDPR audit trail support. This is unusual depth for an open-source orchestration layer.
Claude Code users wanting a larger plugin ecosystem. The 32 native plugins extend Claude Code significantly without requiring custom skill authoring for common tasks like security auditing, cost tracking, and architecture documentation.
Ruflo's architecture maps directly onto patterns the DevDigest community has been building toward. The 27 hooks Ruflo ships align with the hook-driven automation concepts covered at hooks.developersdigest.tech - the idea that Claude Code hooks can trigger, gate, or transform agent behavior at defined lifecycle points. Ruflo formalizes that into a platform layer with named hook types and automatic triggering.
The plugin model also echoes what skills.developersdigest.tech covers for Claude Code skill authoring. Ruflo's 32 plugins are structured skill packages - the difference is that Ruflo handles routing, memory, and federation on top of the skill execution. If you have built custom Claude Code skills and want to coordinate them across a larger team or longer workflow, Ruflo's federation layer is worth evaluating.
For teams exploring managed agent patterns, the swarm coordination model packages infrastructure that previously required building from scratch. The ruflo-autopilot and ruflo-loop-workers plugins in particular map to the autonomous background worker patterns that come up frequently in Claude Code sessions on this channel.
Ruflo is ambitious and the codebase shows genuine engineering depth - HNSW vector search, cryptographic federation, and a real plugin registry are not trivial to build. The Claude Code integration path is smooth for initial setup, and the NPX wizard lowers the barrier to a first run considerably.
Limitations to watch for: The star velocity (12k in a week) is high enough to raise questions about organic growth versus coordinated promotion - verify the community traction before committing production workflows to it. The SONA learning system is not well-documented in the public README, making it difficult to evaluate what it does at runtime. Federation - the cross-machine agent coordination - adds significant operational overhead that most solo developers and small teams will not need immediately. The full 98-agent CLI install also introduces a large surface area to audit before using in any security-sensitive environment.
The plugin-only path is the lower-risk entry point for most developers: install ruflo-core and ruflo-swarm into Claude Code, run a task, and evaluate from there before committing to the full CLI install.
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.
The TypeScript toolkit for building AI apps. Unified API across OpenAI, Anthropic, Google. Streaming, tool calling, stru...
View ToolMost popular LLM framework. 100K+ GitHub stars. Chains, RAG, vector stores, tool use. LangGraph adds stateful multi-agen...
View ToolMulti-agent orchestration framework. Define agents with roles, goals, and tools, then assign them tasks in a crew. Pytho...
View ToolOpen-source AI orchestration framework by deepset. Modular pipelines for RAG, agents, semantic search, and multimodal ap...
View ToolDo a task once with AI, get a reusable agent forever.
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 AppDefine custom subagent types within your project's memory layer.
Claude CodeSpawn isolated workers with independent context windows.
Claude CodePrevent bloating the main conversation with research or exploration.
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...

Check out Replit: https://replit.com/refer/DevelopersDiges The video demos Replit’s Agent 4, explaining how Replit evolved from a cloud IDE into a platform where users can build, deploy, and scale ap...
Anthropic just shipped an official curated plugin directory for Claude Code. It earned 2,500+ stars in a single day and...
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...
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...
TypeScript educator Matt Pocock open-sourced his personal Claude Code skills, and 60,000 developers starred the repo in...

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