AIAny
AI Agent2025
Icon for item

ruflo

Wraps Claude Code and Codex with an execution harness that turns one coding agent into coordinated swarms. A single init command adds ~98 agents, an MCP tool server, cross-session vector memory, and cross-machine federation.

Introduction

The interesting bet here isn't another agent framework — it's the claim that the model was never the bottleneck. Ruflo (formerly Claude Flow) treats Claude Code and Codex as the "model" half of an agent and supplies the other half: the harness of tools, memory, loops, and guardrails that lets a coding assistant behave like a coordinated team instead of a single turn-taking session.

What Sets It Apart
  • One npx ruflo init bootstraps the whole loop — roughly 98 agents, 60+ commands, 30 skills, an MCP server, hooks, and a daemon — so the coordination layer is installed rather than hand-wired per project.
  • A learning loop records which task patterns succeed and reuses them, while a vector-backed AgentDB persists memory across sessions, so agents stop re-solving the same problem from a cold start.
  • Federation lets agents on different machines collaborate without shipping raw data between them — the piece that separates it from single-box swarm demos.
  • Two deliberately different install paths (lite Claude Code plugins vs. the full CLI loop) let you try one plugin's slash commands before committing the full footprint to your repo.
Great Fit / Look Elsewhere

Great fit if you already work inside Claude Code or Codex and want multi-agent orchestration, persistent memory, and cross-machine coordination without building the plumbing yourself. Look elsewhere if you want a lightweight single-agent setup: the full install writes .claude/, .claude-flow/, hooks, and a daemon into your workspace, and the surface area — hundreds of MCP tools and dozens of commands — is real overhead when you only need a few slash commands.

Information

  • Websitegithub.com
  • OrganizationsCognitum.One
  • Authorsruvnet (rUv)
  • Published date2025/06/02

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.