npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@luis-eduardo-bo/ruflo-cli

v3.5.15-fix.2

Published

Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code

Downloads

29

Readme

🌊 RuFlo v3.5: Enterprise AI Orchestration Platform

Ruflo Banner

GitHub Project of the Day

Star on GitHub Monthly Downloads Total Downloads ruv.io Agentics Foundation Claude Code MIT License

Follow @ruv LinkedIn YouTube

Production-ready multi-agent AI orchestration for Claude Code

Deploy 60+ specialized agents in coordinated swarms with self-learning capabilities, fault-tolerant consensus, and enterprise-grade security.

Why Ruflo? Claude Flow is now Ruflo — named by Ruv, who loves Rust, flow states, and building things that feel inevitable. The "Ru" is the Ruv. The "flo" is the flow. Underneath, WASM kernels written in Rust power the policy engine, embeddings, and proof system. 5,800 commits later, the alpha is over. This is v3.5.

Getting into the Flow

Ruflo is a comprehensive AI agent orchestration framework that transforms Claude Code into a powerful multi-agent development platform. It enables teams to deploy, coordinate, and optimize specialized AI agents working together on complex software engineering tasks.

Self-Learning/Self-Optimizing Agent Architecture

User → Ruflo (CLI/MCP) → Router → Swarm → Agents → Memory → LLM Providers
                       ↑                          ↓
                       └──── Learning Loop ←──────┘
flowchart TB
    subgraph USER["👤 User Layer"]
        U[User]
    end

    subgraph ENTRY["🚪 Entry Layer"]
        CLI[CLI / MCP Server]
        AID[AIDefence Security]
    end

    subgraph ROUTING["🧭 Routing Layer"]
        QL[Q-Learning Router]
        MOE[MoE - 8 Experts]
        SK[Skills - 42+]
        HK[Hooks - 17]
    end

    subgraph SWARM["🐝 Swarm Coordination"]
        TOPO[Topologies<br/>mesh/hier/ring/star]
        CONS[Consensus<br/>Raft/BFT/Gossip/CRDT]
        CLM[Claims<br/>Human-Agent Coord]
    end

    subgraph AGENTS["🤖 60+ Agents"]
        AG1[coder]
        AG2[tester]
        AG3[reviewer]
        AG4[architect]
        AG5[security]
        AG6[...]
    end

    subgraph RESOURCES["📦 Resources"]
        MEM[(Memory<br/>AgentDB)]
        PROV[Providers<br/>Claude/GPT/Gemini/Ollama]
        WORK[Workers - 12<br/>ultralearn/audit/optimize]
    end

    subgraph RUVECTOR["🧠 RuVector Intelligence Layer"]
        direction TB
        subgraph ROW1[" "]
            SONA[SONA<br/>Self-Optimize<br/>&lt;0.05ms]
            EWC[EWC++<br/>No Forgetting]
            FLASH[Flash Attention<br/>2.49-7.47x]
        end
        subgraph ROW2[" "]
            HNSW[HNSW<br/>150x-12,500x faster]
            RB[ReasoningBank<br/>Pattern Store]
            HYP[Hyperbolic<br/>Poincaré]
        end
        subgraph ROW3[" "]
            LORA[LoRA/Micro<br/>128x compress]
            QUANT[Int8 Quant<br/>3.92x memory]
            RL[9 RL Algos<br/>Q/SARSA/PPO/DQN]
        end
    end

    subgraph LEARNING["🔄 Learning Loop"]
        L1[RETRIEVE] --> L2[JUDGE] --> L3[DISTILL] --> L4[CONSOLIDATE] --> L5[ROUTE]
    end

    U --> CLI
    CLI --> AID
    AID --> QL & MOE & SK & HK
    QL & MOE & SK & HK --> TOPO & CONS & CLM
    TOPO & CONS & CLM --> AG1 & AG2 & AG3 & AG4 & AG5 & AG6
    AG1 & AG2 & AG3 & AG4 & AG5 & AG6 --> MEM & PROV & WORK
    MEM --> SONA & EWC & FLASH
    SONA & EWC & FLASH --> HNSW & RB & HYP
    HNSW & RB & HYP --> LORA & QUANT & RL
    LORA & QUANT & RL --> L1
    L5 -.->|loops back| QL

    style RUVECTOR fill:#1a1a2e,stroke:#e94560,stroke-width:2px
    style LEARNING fill:#0f3460,stroke:#e94560,stroke-width:2px
    style USER fill:#16213e,stroke:#0f3460
    style ENTRY fill:#1a1a2e,stroke:#0f3460
    style ROUTING fill:#1a1a2e,stroke:#0f3460
    style SWARM fill:#1a1a2e,stroke:#0f3460
    style AGENTS fill:#1a1a2e,stroke:#0f3460
    style RESOURCES fill:#1a1a2e,stroke:#0f3460

RuVector Components (included with Ruflo):

| Component | Purpose | Performance | |-----------|---------|-------------| | SONA | Self-Optimizing Neural Architecture - learns optimal routing | Fast adaptation | | EWC++ | Elastic Weight Consolidation - prevents catastrophic forgetting | Preserves learned patterns | | Flash Attention | Optimized attention computation | 2-7x speedup | | HNSW | Hierarchical Navigable Small World vector search | Sub-millisecond retrieval | | ReasoningBank | Pattern storage with trajectory learning | RETRIEVE→JUDGE→DISTILL | | Hyperbolic | Poincare ball embeddings for hierarchical data | Better code relationships | | LoRA/MicroLoRA | Low-Rank Adaptation for efficient fine-tuning | Lightweight adaptation | | Int8 Quantization | Memory-efficient weight storage | ~4x memory reduction | | SemanticRouter | Semantic task routing with cosine similarity | Fast intent routing | | 9 RL Algorithms | Q-Learning, SARSA, A2C, PPO, DQN, Decision Transformer, etc. | Task-specific learning |

# Use RuVector via Ruflo
npx ruflo@latest hooks intelligence --status

Get Started Fast

# One-line install (recommended)
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/claude-flow@main/scripts/install.sh | bash

# Or full setup with MCP + diagnostics
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/claude-flow@main/scripts/install.sh | bash -s -- --full

# Or via npx
npx ruflo@latest init --wizard

Key Capabilities

🤖 60+ Specialized Agents - Ready-to-use AI agents for coding, code review, testing, security audits, documentation, and DevOps. Each agent is optimized for its specific role.

🐝 Coordinated Agent Teams - Run unlimited agents simultaneously in organized swarms. Agents spawn sub-workers, communicate, share context, and divide work automatically using hierarchical (queen/workers) or mesh (peer-to-peer) patterns.

🧠 Learns From Your Workflow - The system remembers what works. Successful patterns are stored and reused, routing similar tasks to the best-performing agents. Gets smarter over time.

🔌 Works With Any LLM - Switch between Claude, GPT, Gemini, Cohere, or local models like Llama. Automatic failover if one provider is unavailable. Smart routing picks the cheapest option that meets quality requirements.

Plugs Into Claude Code - Native integration via MCP (Model Context Protocol). Use ruflo commands directly in your Claude Code sessions with full tool access.

🔒 Production-Ready Security - Built-in protection against prompt injection, input validation, path traversal prevention, command injection blocking, and safe credential handling.

🧩 Extensible Plugin System - Add custom capabilities with the plugin SDK. Create workers, hooks, providers, and security modules. Share plugins via the decentralized IPFS marketplace.


A multi-purpose Agent Tool Kit

Every request flows through four layers: from your CLI or Claude Code interface, through intelligent routing, to specialized agents, and finally to LLM providers for reasoning.

| Layer | Components | What It Does | |-------|------------|--------------| | User | Claude Code, CLI | Your interface to control and run commands | | Orchestration | MCP Server, Router, Hooks | Routes requests to the right agents | | Agents | 60+ types | Specialized workers (coder, tester, reviewer...) | | Providers | Anthropic, OpenAI, Google, Ollama | AI models that power reasoning |

Agents organize into swarms led by queens that coordinate work, prevent drift, and reach consensus on decisions—even when some agents fail.

| Layer | Components | What It Does | |-------|------------|--------------| | Coordination | Queen, Swarm, Consensus | Manages agent teams (Raft, Byzantine, Gossip) | | Drift Control | Hierarchical topology, Checkpoints | Prevents agents from going off-task | | Hive Mind | Queen-led hierarchy, Collective memory | Strategic/tactical/adaptive queens coordinate workers | | Consensus | Byzantine, Weighted, Majority | Fault-tolerant decisions (2/3 majority for BFT) |

Hive Mind Capabilities:

  • 🐝 Queen Types: Strategic (planning), Tactical (execution), Adaptive (optimization)
  • 👷 8 Worker Types: Researcher, Coder, Analyst, Tester, Architect, Reviewer, Optimizer, Documenter
  • 🗳️ 3 Consensus Algorithms: Majority, Weighted (Queen 3x), Byzantine (f < n/3)
  • 🧠 Collective Memory: Shared knowledge, LRU cache, SQLite persistence with WAL
  • Performance: Fast batch spawning with parallel agent coordination

The system stores successful patterns in vector memory, builds a knowledge graph for structural understanding, learns from outcomes via neural networks, and adapts routing based on what works best.

| Layer | Components | What It Does | |-------|------------|--------------| | Memory | HNSW, AgentDB, Cache | Stores and retrieves patterns with fast HNSW search | | Knowledge Graph | MemoryGraph, PageRank, Communities | Identifies influential insights, detects clusters (ADR-049) | | Self-Learning | LearningBridge, SONA, ReasoningBank | Triggers learning from insights, confidence lifecycle (ADR-049) | | Agent Scopes | AgentMemoryScope, 3-scope dirs | Per-agent isolation + cross-agent knowledge transfer (ADR-049) | | Embeddings | ONNX Runtime, MiniLM | Local vectors without API calls (75x faster) | | Learning | SONA, MoE, ReasoningBank | Self-improves from results (<0.05ms adaptation) | | Fine-tuning | MicroLoRA, EWC++ | Lightweight adaptation without full retraining |

Skip expensive LLM calls for simple tasks using WebAssembly transforms, and compress tokens to reduce API costs by 30-50%.

| Layer | Components | What It Does | |-------|------------|--------------| | Agent Booster | WASM, AST analysis | Skips LLM for simple edits (<1ms) | | Token Optimizer | Compression, Caching | Reduces token usage 30-50% |

Background daemons handle security audits, performance optimization, and session persistence automatically while you work.

| Layer | Components | What It Does | |-------|------------|--------------| | Background | Daemon, 12 Workers | Auto-runs audits, optimization, learning | | Security | AIDefence, Validation | Blocks injection, detects threats | | Sessions | Persist, Restore, Export | Saves context across conversations | | GitHub | PR, Issues, Workflows | Manages repos and code reviews | | Analytics | Metrics, Benchmarks | Monitors performance, finds bottlenecks |

Smart routing skips expensive LLM calls when possible. Simple edits use WASM (free), medium tasks use cheaper models. This can extend your Claude Code usage by 250% or save significantly on direct API costs.

| Complexity | Handler | Speed | |------------|---------|-------| | Simple | Agent Booster (WASM) | <1ms | | Medium | Haiku/Sonnet | ~500ms | | Complex | Opus + Swarm | 2-5s |

Agent Booster uses WebAssembly to handle simple code transformations without calling the LLM at all. When the hooks system detects a simple task, it routes directly to Agent Booster for instant results.

Supported Transform Intents:

| Intent | What It Does | Example | |--------|--------------|---------| | var-to-const | Convert var/let to const | var x = 1const x = 1 | | add-types | Add TypeScript type annotations | function foo(x)function foo(x: string) | | add-error-handling | Wrap in try/catch | Adds proper error handling | | async-await | Convert promises to async/await | .then() chains → await | | add-logging | Add console.log statements | Adds debug logging | | remove-console | Strip console.* calls | Removes all console statements |

Hook Signals:

When you see these in hook output, the system is telling you how to optimize:

# Agent Booster available - skip LLM entirely
[AGENT_BOOSTER_AVAILABLE] Intent: var-to-const
→ Use Edit tool directly, 352x faster than LLM

# Model recommendation for Task tool
[TASK_MODEL_RECOMMENDATION] Use model="haiku"
→ Pass model="haiku" to Task tool for cost savings

Performance:

| Metric | Agent Booster | LLM Call | |--------|---------------|----------| | Latency | <1ms | 2-5s | | Cost | $0 | $0.0002-$0.015 | | Speedup | 352x faster | baseline |

The Token Optimizer integrates agentic-flow optimizations to reduce API costs by compressing context and caching results.

Savings Breakdown:

| Optimization | Token Savings | How It Works | |--------------|---------------|--------------| | ReasoningBank retrieval | -32% | Fetches relevant patterns instead of full context | | Agent Booster edits | -15% | Simple edits skip LLM entirely | | Cache (95% hit rate) | -10% | Reuses embeddings and patterns | | Optimal batch size | -20% | Groups related operations | | Combined | 30-50% | Stacks multiplicatively |

Usage:

import { getTokenOptimizer } from '@claude-flow/integration';
const optimizer = await getTokenOptimizer();

// Get compact context (32% fewer tokens)
const ctx = await optimizer.getCompactContext("auth patterns");

// Optimized edit (352x faster for simple transforms)
await optimizer.optimizedEdit(file, oldStr, newStr, "typescript");

// Optimal config for swarm (100% success rate)
const config = optimizer.getOptimalConfig(agentCount);

Complex swarms can drift from their original goals. Ruflo V3 includes anti-drift defaults that prevent agents from going off-task.

Recommended Configuration:

// Anti-drift defaults (ALWAYS use for coding tasks)
swarm_init({
  topology: "hierarchical",  // Single coordinator enforces alignment
  maxAgents: 8,              // Smaller team = less drift surface
  strategy: "specialized"    // Clear roles reduce ambiguity
})

Why This Prevents Drift:

| Setting | Anti-Drift Benefit | |---------|-------------------| | hierarchical | Coordinator validates each output against goal, catches divergence early | | maxAgents: 6-8 | Fewer agents = less coordination overhead, easier alignment | | specialized | Clear boundaries - each agent knows exactly what to do, no overlap | | raft consensus | Leader maintains authoritative state, no conflicting decisions |

Additional Anti-Drift Measures:

  • Frequent checkpoints via post-task hooks
  • Shared memory namespace for all agents
  • Short task cycles with verification gates
  • Hierarchical coordinator reviews all outputs

Task → Agent Routing (Anti-Drift):

| Code | Task Type | Recommended Agents | |------|-----------|-------------------| | 1 | Bug Fix | coordinator, researcher, coder, tester | | 3 | Feature | coordinator, architect, coder, tester, reviewer | | 5 | Refactor | coordinator, architect, coder, reviewer | | 7 | Performance | coordinator, perf-engineer, coder | | 9 | Security | coordinator, security-architect, auditor | | 11 | Memory | coordinator, memory-specialist, perf-engineer |

Claude Code: With vs Without Ruflo

| Capability | Claude Code Alone | Claude Code + Ruflo | |------------|-------------------|---------------------------| | Agent Collaboration | Agents work in isolation, no shared context | Agents collaborate via swarms with shared memory and consensus | | Coordination | Manual orchestration between tasks | Queen-led hierarchy with 5 consensus algorithms (Raft, Byzantine, Gossip) | | Hive Mind | ⛔ Not available | 🐝 Queen-led swarms with collective intelligence, 3 queen types, 8 worker types | | Consensus | ⛔ No multi-agent decisions | Byzantine fault-tolerant voting (f < n/3), weighted, majority | | Memory | Session-only, no persistence | HNSW vector memory with sub-ms retrieval + knowledge graph | | Vector Database | ⛔ No native support | 🐘 RuVector PostgreSQL with 77+ SQL functions, ~61µs search, 16,400 QPS | | Knowledge Graph | ⛔ Flat insight lists | PageRank + community detection identifies influential insights (ADR-049) | | Collective Memory | ⛔ No shared knowledge | Shared knowledge base with LRU cache, SQLite persistence, 8 memory types | | Learning | Static behavior, no adaptation | SONA self-learning with <0.05ms adaptation, LearningBridge for insights | | Agent Scoping | Single project scope | 3-scope agent memory (project/local/user) with cross-agent transfer | | Task Routing | You decide which agent to use | Intelligent routing based on learned patterns (89% accuracy) | | Complex Tasks | Manual breakdown required | Automatic decomposition across 5 domains (Security, Core, Integration, Support) | | Background Workers | Nothing runs automatically | 12 context-triggered workers auto-dispatch on file changes, patterns, sessions | | LLM Provider | Anthropic only | 6 providers with automatic failover and cost-based routing (85% savings) | | Security | Standard protections | CVE-hardened with bcrypt, input validation, path traversal prevention | | Performance | Baseline | Faster tasks via parallel swarm spawning and intelligent routing |

Quick Start

Prerequisites

  • Node.js 20+ (required)
  • npm 9+ / pnpm / bun package manager

IMPORTANT: Claude Code must be installed first:

# 1. Install Claude Code globally
npm install -g @anthropic-ai/claude-code

# 2. (Optional) Skip permissions check for faster setup
claude --dangerously-skip-permissions

Installation

One-Line Install (Recommended)

# curl-style installer with progress display
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/claude-flow@main/scripts/install.sh | bash

# Full setup (global + MCP + diagnostics)
curl -fsSL https://cdn.jsdelivr.net/gh/ruvnet/claude-flow@main/scripts/install.sh | bash -s -- --full

| Option | Description | |--------|-------------| | --global, -g | Install globally (npm install -g) | | --minimal, -m | Skip optional deps (faster, ~15s) | | --setup-mcp | Auto-configure MCP server for Claude Code | | --doctor, -d | Run diagnostics after install | | --no-init | Skip project initialization (init runs by default) | | --full, -f | Full setup: global + MCP + doctor | | --version=X.X.X | Install specific version |

Examples:

# Minimal global install (fastest)
curl ... | bash -s -- --global --minimal

# With MCP auto-setup
curl ... | bash -s -- --global --setup-mcp

# Full setup with diagnostics
curl ... | bash -s -- --full

Speed: | Mode | Time | |------|------| | npx (cached) | ~3s | | npx (fresh) | ~20s | | global | ~35s | | --minimal | ~15s |

npm/npx Install

# Quick start (no install needed)
npx ruflo@latest init

# Or install globally
npm install -g ruflo@latest
ruflo init

# With Bun (faster)
bunx ruflo@latest init

Install Profiles

| Profile | Size | Use Case | |---------|------|----------| | --omit=optional | ~45MB | Core CLI only (fastest) | | Default | ~340MB | Full install with ML/embeddings |

# Minimal install (skip ML/embeddings)
npm install -g ruflo@latest --omit=optional

Ruflo supports both Claude Code and OpenAI Codex CLI via the @claude-flow/codex package, following the Agentics Foundation standard.

Quick Start for Codex

# Initialize for Codex CLI (creates AGENTS.md instead of CLAUDE.md)
npx ruflo@latest init --codex

# Full Codex setup with all 137+ skills
npx ruflo@latest init --codex --full

# Initialize for both platforms (dual mode)
npx ruflo@latest init --dual

Platform Comparison

| Feature | Claude Code | OpenAI Codex | |---------|-------------|--------------| | Config File | CLAUDE.md | AGENTS.md | | Skills Dir | .claude/skills/ | .agents/skills/ | | Skill Syntax | /skill-name | $skill-name | | Settings | settings.json | config.toml | | MCP | Native | Via codex mcp add | | Default Model | claude-sonnet | gpt-5.3 |

Key Concept: Execution Model

┌─────────────────────────────────────────────────────────────────┐
│  CLAUDE-FLOW = ORCHESTRATOR (tracks state, stores memory)       │
│  CODEX = EXECUTOR (writes code, runs commands, implements)      │
└─────────────────────────────────────────────────────────────────┘

Codex does the work. Claude-flow coordinates and learns.

Dual-Mode Integration (Claude Code + Codex)

Run Claude Code for interactive development and spawn headless Codex workers for parallel background tasks:

┌─────────────────────────────────────────────────────────────────┐
│  CLAUDE CODE (interactive)  ←→  CODEX WORKERS (headless)        │
│  - Main conversation         - Parallel background execution    │
│  - Complex reasoning         - Bulk code generation            │
│  - Architecture decisions    - Test execution                   │
│  - Final integration         - File processing                  │
└─────────────────────────────────────────────────────────────────┘
# Spawn parallel Codex workers from Claude Code
claude -p "Analyze src/auth/ for security issues" --session-id "task-1" &
claude -p "Write unit tests for src/api/" --session-id "task-2" &
claude -p "Optimize database queries in src/db/" --session-id "task-3" &
wait  # Wait for all to complete

| Dual-Mode Feature | Benefit | |-------------------|---------| | Parallel Execution | 4-8x faster for bulk tasks | | Cost Optimization | Route simple tasks to cheaper workers | | Context Preservation | Shared memory across platforms | | Best of Both | Interactive + batch processing |

Dual-Mode CLI Commands (NEW)

# List collaboration templates
npx @claude-flow/codex dual templates

# Run feature development swarm (architect → coder → tester → reviewer)
npx @claude-flow/codex dual run --template feature --task "Add user auth"

# Run security audit swarm (scanner → analyzer → fixer)
npx @claude-flow/codex dual run --template security --task "src/auth/"

# Run refactoring swarm (analyzer → planner → refactorer → validator)
npx @claude-flow/codex dual run --template refactor --task "src/legacy/"

Pre-Built Collaboration Templates

| Template | Pipeline | Platforms | |----------|----------|-----------| | feature | architect → coder → tester → reviewer | Claude + Codex | | security | scanner → analyzer → fixer | Codex + Claude | | refactor | analyzer → planner → refactorer → validator | Claude + Codex |

MCP Integration for Codex

When you run init --codex, the MCP server is automatically registered:

# Verify MCP is registered
codex mcp list

# If not present, add manually:
codex mcp add ruflo -- npx ruflo mcp start

Self-Learning Workflow

1. LEARN:   memory_search(query="task keywords") → Find similar patterns
2. COORD:   swarm_init(topology="hierarchical") → Set up coordination
3. EXECUTE: YOU write code, run commands       → Codex does real work
4. REMEMBER: memory_store(key, value, namespace="patterns") → Save for future

The Intelligence Loop (ADR-050) automates this cycle through hooks. Each session automatically:

  • Builds a knowledge graph from memory entries (PageRank + Jaccard similarity)
  • Injects ranked context into every route decision
  • Tracks edit patterns and generates new insights
  • Boosts confidence for useful patterns, decays unused ones
  • Saves snapshots so you can track improvement with node .claude/helpers/hook-handler.cjs stats

MCP Tools for Learning

| Tool | Purpose | When to Use | |------|---------|-------------| | memory_search | Semantic vector search | BEFORE starting any task | | memory_store | Save patterns with embeddings | AFTER completing successfully | | swarm_init | Initialize coordination | Start of complex tasks | | agent_spawn | Register agent roles | Multi-agent workflows | | neural_train | Train on patterns | Periodic improvement |

137+ Skills Available

| Category | Examples | |----------|----------| | V3 Core | $v3-security-overhaul, $v3-memory-unification, $v3-performance-optimization | | AgentDB | $agentdb-vector-search, $agentdb-optimization, $agentdb-learning | | Swarm | $swarm-orchestration, $swarm-advanced, $hive-mind-advanced | | GitHub | $github-code-review, $github-workflow-automation, $github-multi-repo | | SPARC | $sparc-methodology, $sparc:architect, $sparc:coder, $sparc:tester | | Flow Nexus | $flow-nexus-neural, $flow-nexus-swarm, $flow-nexus:workflow | | Dual-Mode | $dual-spawn, $dual-coordinate, $dual-collect |

Vector Search Details

  • Embedding Dimensions: 384
  • Search Algorithm: HNSW (sub-millisecond)
  • Similarity Scoring: 0-1 (higher = better)
    • Score > 0.7: Strong match, use pattern
    • Score 0.5-0.7: Partial match, adapt
    • Score < 0.5: Weak match, create new

Basic Usage

# Initialize project
npx ruflo@latest init

# Start MCP server for Claude Code integration
npx ruflo@latest mcp start

# Run a task with agents
npx ruflo@latest --agent coder --task "Implement user authentication"

# List available agents
npx ruflo@latest --list

Upgrading

# Update helpers and statusline (preserves your data)
npx ruflo@v3alpha init upgrade

# Update AND add any missing skills/agents/commands
npx ruflo@v3alpha init upgrade --add-missing

The --add-missing flag automatically detects and installs new skills, agents, and commands that were added in newer versions, without overwriting your existing customizations.

Claude Code MCP Integration

Add ruflo as an MCP server for seamless integration:

# Add ruflo MCP server to Claude Code
claude mcp add ruflo -- npx -y ruflo@latest mcp start

# Verify installation
claude mcp list

Once added, Claude Code can use all 175+ ruflo MCP tools directly:

  • swarm_init - Initialize agent swarms
  • agent_spawn - Spawn specialized agents
  • memory_search - Search patterns with HNSW vector search
  • hooks_route - Intelligent task routing
  • And 170+ more tools...

What is it exactly? Agents that learn, build and work perpetually.

Ruflo v3 introduces self-learning neural capabilities that no other agent orchestration framework offers. While competitors require manual agent configuration and static routing, Ruflo learns from every task execution, prevents catastrophic forgetting of successful patterns, and intelligently routes work to specialized experts.

🧠 Neural & Learning

| Feature | Ruflo v3 | CrewAI | LangGraph | AutoGen | Manus | |---------|----------------|--------|-----------|---------|-------| | Self-Learning | ✅ SONA + EWC++ | ⛔ | ⛔ | ⛔ | ⛔ | | Prevents Forgetting | ✅ EWC++ consolidation | ⛔ | ⛔ | ⛔ | ⛔ | | Pattern Learning | ✅ From trajectories | ⛔ | ⛔ | ⛔ | ⛔ | | Expert Routing | ✅ MoE (8 experts) | Manual | Graph edges | ⛔ | Fixed | | Attention Optimization | ✅ Flash Attention | ⛔ | ⛔ | ⛔ | ⛔ | | Low-Rank Adaptation | ✅ LoRA (128x compress) | ⛔ | ⛔ | ⛔ | ⛔ |

💾 Memory & Embeddings

| Feature | Ruflo v3 | CrewAI | LangGraph | AutoGen | Manus | |---------|----------------|--------|-----------|---------|-------| | Vector Memory | ✅ HNSW (sub-ms search) | ⛔ | Via plugins | ⛔ | ⛔ | | Knowledge Graph | ✅ PageRank + communities | ⛔ | ⛔ | ⛔ | ⛔ | | Self-Learning Memory | ✅ LearningBridge (SONA) | ⛔ | ⛔ | ⛔ | ⛔ | | Agent-Scoped Memory | ✅ 3-scope (project/local/user) | ⛔ | ⛔ | ⛔ | ⛔ | | PostgreSQL Vector DB | ✅ RuVector (77+ SQL functions) | ⛔ | pgvector only | ⛔ | ⛔ | | Hyperbolic Embeddings | ✅ Poincaré ball (native + SQL) | ⛔ | ⛔ | ⛔ | ⛔ | | Quantization | ✅ Int8 (~4x savings) | ⛔ | ⛔ | ⛔ | ⛔ | | Persistent Memory | ✅ SQLite + AgentDB + PostgreSQL | ⛔ | ⛔ | ⛔ | Limited | | Cross-Session Context | ✅ Full restoration | ⛔ | ⛔ | ⛔ | ⛔ | | GNN/Attention in SQL | ✅ 39 attention mechanisms | ⛔ | ⛔ | ⛔ | ⛔ |

🐝 Swarm & Coordination

| Feature | Ruflo v3 | CrewAI | LangGraph | AutoGen | Manus | |---------|----------------|--------|-----------|---------|-------| | Swarm Topologies | ✅ 4 types | 1 | 1 | 1 | 1 | | Consensus Protocols | ✅ 5 (Raft, BFT, etc.) | ⛔ | ⛔ | ⛔ | ⛔ | | Work Ownership | ✅ Claims system | ⛔ | ⛔ | ⛔ | ⛔ | | Background Workers | ✅ 12 auto-triggered | ⛔ | ⛔ | ⛔ | ⛔ | | Multi-Provider LLM | ✅ 6 with failover | 2 | 3 | 2 | 1 |

🔧 Developer Experience

| Feature | Ruflo v3 | CrewAI | LangGraph | AutoGen | Manus | |---------|----------------|--------|-----------|---------|-------| | MCP Integration | ✅ Native (170+ tools) | ⛔ | ⛔ | ⛔ | ⛔ | | Skills System | ✅ 42+ pre-built | ⛔ | ⛔ | ⛔ | Limited | | Stream Pipelines | ✅ JSON chains | ⛔ | Via code | ⛔ | ⛔ | | Pair Programming | ✅ Driver/Navigator | ⛔ | ⛔ | ⛔ | ⛔ | | Auto-Updates | ✅ With rollback | ⛔ | ⛔ | ⛔ | ⛔ |

🛡️ Security & Platform

| Feature | Ruflo v3 | CrewAI | LangGraph | AutoGen | Manus | |---------|----------------|--------|-----------|---------|-------| | Threat Detection | ✅ AIDefence (<10ms) | ⛔ | ⛔ | ⛔ | ⛔ | | Cloud Platform | ✅ Flow Nexus | ⛔ | ⛔ | ⛔ | ⛔ | | Code Transforms | ✅ Agent Booster (WASM) | ⛔ | ⛔ | ⛔ | ⛔ | | Input Validation | ✅ Zod + Path security | ⛔ | ⛔ | ⛔ | ⛔ |

Comparison updated February 2026. Feature availability based on public documentation.

What makes Ruflo different from other agent frameworks? These 10 capabilities work together to create a system that learns from experience, runs efficiently on any hardware, and keeps working even when things go wrong.

| | Feature | What It Does | Technical Details | |---|---------|--------------|-------------------| | 🧠 | SONA | Learns which agents perform best for each task type and routes work accordingly | Self-Optimizing Neural Architecture | | 🔒 | EWC++ | Preserves learned patterns when training on new ones — no forgetting | Elastic Weight Consolidation prevents catastrophic forgetting | | 🎯 | MoE | Routes tasks through 8 specialized expert networks based on task type | Mixture of 8 Experts with dynamic gating | | ⚡ | Flash Attention | Accelerates attention computation for faster agent responses | Optimized attention via @ruvector/attention | | 🌐 | Hyperbolic Embeddings | Represents hierarchical code relationships in compact vector space | Poincare ball model for hierarchical data | | 📦 | LoRA | Lightweight model adaptation so agents fit in limited memory | Low-Rank Adaptation via @ruvector/sona | | 🗜️ | Int8 Quantization | Converts 32-bit weights to 8-bit with minimal accuracy loss | ~4x memory reduction with calibrated integers | | 🤝 | Claims System | Manages task ownership between humans and agents with handoff support | Work ownership with claim/release/handoff protocols | | 🛡️ | Byzantine Consensus | Coordinates agents even when some fail or return bad results | Fault-tolerant, handles up to 1/3 failing agents | | 🐘 | RuVector PostgreSQL | Enterprise-grade vector database with 77+ SQL functions for AI operations | Fast vector search with GNN/attention in SQL |

Not every task needs the most powerful (and expensive) model. Ruflo analyzes each request and automatically routes it to the cheapest handler that can do the job well. Simple code transforms skip the LLM entirely using WebAssembly. Medium tasks use faster, cheaper models. Only complex architecture decisions use Opus.

Cost & Usage Benefits:

| Benefit | Impact | |---------|--------| | 💵 API Cost Reduction | 75% lower costs by using right-sized models | | ⏱️ Claude Max Extension | 2.5x more tasks within your quota limits | | 🚀 Faster Simple Tasks | <1ms for transforms vs 2-5s with LLM | | 🎯 Zero Wasted Tokens | Simple edits use 0 tokens (WASM handles them) |

Routing Tiers:

| Tier | Handler | Latency | Cost | Use Cases | |------|---------|---------|------|-----------| | 1 | Agent Booster (WASM) | <1ms | $0 | Simple transforms: var→const, add-types, remove-console | | 2 | Haiku/Sonnet | 500ms-2s | $0.0002-$0.003 | Bug fixes, refactoring, feature implementation | | 3 | Opus | 2-5s | $0.015 | Architecture, security design, distributed systems |

Benchmark Results: 100% routing accuracy, 0.57ms avg routing decision latency

Complex projects fail when implementation drifts from the original plan. Ruflo solves this with a spec-first approach: define your architecture through ADRs (Architecture Decision Records), organize code into DDD bounded contexts, and let the system enforce compliance as agents work. The result is implementations that match specifications — even across multi-agent swarms working in parallel.

How It Prevents Drift:

| Capability | What It Does | |------------|--------------| | 🎯 Spec-First Planning | Agents generate ADRs before writing code, capturing requirements and decisions | | 🔍 Real-Time Compliance | Statusline shows ADR compliance %, catches deviations immediately | | 🚧 Bounded Contexts | Each domain (Security, Memory, etc.) has clear boundaries agents can't cross | | ✅ Validation Gates | hooks progress blocks merges that violate specifications | | 🔄 Living Documentation | ADRs update automatically as requirements evolve |

Specification Features:

| Feature | Description | |---------|-------------| | Architecture Decision Records | 10 ADRs defining system behavior, integration patterns, and security requirements | | Domain-Driven Design | 5 bounded contexts with clean interfaces preventing cross-domain pollution | | Automated Spec Generation | Agents create specs from requirements using SPARC methodology | | Drift Detection | Continuous monitoring flags when code diverges from spec | | Hierarchical Coordination | Queen agent enforces spec compliance across all worker agents |

DDD Bounded Contexts:

┌─────────────┐  ┌─────────────┐  ┌─────────────┐
│    Core     │  │   Memory    │  │  Security   │
│  Agents,    │  │  AgentDB,   │  │  AIDefence, │
│  Swarms,    │  │  HNSW,      │  │  Validation │
│  Tasks      │  │  Cache      │  │  CVE Fixes  │
└─────────────┘  └─────────────┘  └─────────────┘
┌─────────────┐  ┌─────────────┐
│ Integration │  │Coordination │
│ agentic-    │  │  Consensus, │
│ flow,MCP    │  │  Hive-Mind  │
└─────────────┘  └─────────────┘

Key ADRs:

  • ADR-001: agentic-flow@alpha as foundation (eliminates 10,000+ duplicate lines)
  • ADR-006: Unified Memory Service with AgentDB
  • ADR-008: Vitest testing framework (10x faster than Jest)
  • ADR-009: Hybrid Memory Backend (SQLite + HNSW)
  • ADR-026: Intelligent 3-tier model routing
  • ADR-048: Auto Memory Bridge (Claude Code ↔ AgentDB bidirectional sync)
  • ADR-049: Self-Learning Memory with GNN (LearningBridge, MemoryGraph, AgentMemoryScope)

🏗️ Architecture Diagrams

flowchart TB
    subgraph User["👤 User Layer"]
        CC[Claude Code]
        CLI[CLI Commands]
    end

    subgraph Orchestration["🎯 Orchestration Layer"]
        MCP[MCP Server]
        Router[Intelligent Router]
        Hooks[Self-Learning Hooks]
    end

    subgraph Agents["🤖 Agent Layer"]
        Queen[Queen Coordinator]
        Workers[60+ Specialized Agents]
        Swarm[Swarm Manager]
    end

    subgraph Intelligence["🧠 Intelligence Layer"]
        SONA[SONA Learning]
        MoE[Mixture of Experts]
        HNSW[HNSW Vector Search]
    end

    subgraph Providers["☁️ Provider Layer"]
        Anthropic[Anthropic]
        OpenAI[OpenAI]
        Google[Google]
        Ollama[Ollama]
    end

    CC --> MCP
    CLI --> MCP
    MCP --> Router
    Router --> Hooks
    Hooks --> Queen
    Queen --> Workers
    Queen --> Swarm
    Workers --> Intelligence
    Intelligence --> Providers
sequenceDiagram
    participant U as User
    participant R as Router
    participant H as Hooks
    participant A as Agent Pool
    participant M as Memory
    participant P as Provider

    U->>R: Submit Task
    R->>H: pre-task hook
    H->>H: Analyze complexity

    alt Simple Task
        H->>A: Agent Booster (WASM)
        A-->>U: Result (<1ms)
    else Medium Task
        H->>A: Spawn Haiku Agent
        A->>M: Check patterns
        M-->>A: Cached context
        A->>P: LLM Call
        P-->>A: Response
        A->>H: post-task hook
        H->>M: Store patterns
        A-->>U: Result
    else Complex Task
        H->>A: Spawn Swarm
        A->>A: Coordinate agents
        A->>P: Multiple LLM calls
        P-->>A: Responses
        A->>H: post-task hook
        A-->>U: Result
    end
flowchart LR
    subgraph Input["📥 Input"]
        Query[Query/Pattern]
        Insight[New Insight]
    end

    subgraph Processing["⚙️ Processing"]
        Embed[ONNX Embeddings]
        Normalize[Normalization]
        Learn[LearningBridge<br/>SONA + ReasoningBank]
    end

    subgraph Storage["💾 Storage"]
        HNSW[(HNSW Index<br/>150x faster)]
        SQLite[(SQLite Cache)]
        AgentDB[(AgentDB)]
        Graph[MemoryGraph<br/>PageRank + Communities]
    end

    subgraph Retrieval["🔍 Retrieval"]
        Vector[Vector Search]
        Semantic[Semantic Match]
        Rank[Graph-Aware Ranking]
        Results[Top-K Results]
    end

    Query --> Embed
    Embed --> Normalize
    Normalize --> HNSW
    Normalize --> SQLite
    Insight --> Learn
    Learn --> AgentDB
    AgentDB --> Graph
    HNSW --> Vector
    SQLite --> Vector
    AgentDB --> Semantic
    Vector --> Rank
    Semantic --> Rank
    Graph --> Rank
    Rank --> Results

Self-Learning Memory (ADR-049): | Component | Purpose | Performance | |-----------|---------|-------------| | LearningBridge | Connects insights to SONA/ReasoningBank neural pipeline | 0.12 ms/insight | | MemoryGraph | PageRank + label propagation knowledge graph | 2.78 ms build (1k nodes) | | AgentMemoryScope | 3-scope agent memory (project/local/user) with cross-agent transfer | 1.25 ms transfer | | AutoMemoryBridge | Bidirectional sync: Claude Code auto memory files ↔ AgentDB | ADR-048 |

Ruflo V3 integrates AgentDB v3 (3.0.0-alpha.10) providing 20+ memory controllers accessible via MCP tools and the CLI.

Core Memory:

| Controller | MCP Tool | Description | |-----------|----------|-------------| | HierarchicalMemory | agentdb_hierarchical-store/recall | Working → episodic → semantic memory tiers with Ebbinghaus forgetting curves and spaced repetition | | MemoryConsolidation | agentdb_consolidate | Automatic clustering and merging of related memories into semantic summaries | | BatchOperations | agentdb_batch | Bulk insert/update/delete operations for high-throughput memory management | | ReasoningBank | agentdb_pattern-store/search | Pattern storage with BM25+semantic hybrid search |

Intelligence:

| Controller | MCP Tool | Description | |-----------|----------|-------------| | SemanticRouter | agentdb_semantic-route | Route tasks to agents using vector similarity instead of manual rules | | ContextSynthesizer | agentdb_context-synthesize | Auto-generate context summaries from memory entries | | GNNService | — | Graph neural network for intent classification and skill recommendation | | SonaTrajectoryService | — | Record and predict learning trajectories for agents | | GraphTransformerService | — | Sublinear attention, causal attention, Granger causality extraction |

Causal & Explainable:

| Controller | MCP Tool | Description | |-----------|----------|-------------| | CausalRecall | agentdb_causal-edge | Recall with causal re-ranking and utility scoring | | ExplainableRecall | — | Certificates proving why a memory was recalled | | CausalMemoryGraph | — | Directed causal relationships between memory entries | | MMRDiversityRanker | — | Maximal Marginal Relevance for diverse search results |

Security & Integrity:

| Controller | MCP Tool | Description | |-----------|----------|-------------| | GuardedVectorBackend | — | Cryptographic proof-of-work before vector insert/search | | MutationGuard | — | Token-validated mutations with cryptographic proofs | | AttestationLog | — | Immutable audit trail of all memory operations |

Optimization:

| Controller | MCP Tool | Description | |-----------|----------|-------------| | RVFOptimizer | — | 4-bit adaptive quantization and progressive compression |

MCP Tool Examples:

# Store to hierarchical memory
agentdb_hierarchical-store --key "auth-pattern" --value "JWT refresh" --tier "semantic"

# Recall from memory tiers
agentdb_hierarchical-recall --query "authentication" --topK 5

# Run memory consolidation
agentdb_consolidate

# Batch insert
agentdb_batch --operation insert --entries '[{"key":"k1","value":"v1"}]'

# Synthesize context
agentdb_context-synthesize --query "error handling patterns"

# Semantic routing
agentdb_semantic-route --input "fix auth bug in login"

Hierarchical Memory Tiers:

┌─────────────────────────────────────────────┐
│  Working Memory                             │  ← Active context, fast access
│  Size-based eviction (1MB limit)            │
├─────────────────────────────────────────────┤
│  Episodic Memory                            │  ← Recent patterns, moderate retention
│  Importance × retention score ranking       │
├─────────────────────────────────────────────┤
│  Semantic Memory                            │  ← Consolidated knowledge, persistent
│  Promoted from episodic via consolidation   │
└─────────────────────────────────────────────┘
flowchart TB
    subgraph Hierarchical["👑 Hierarchical (Default)"]
        Q1[Queen] --> W1[Worker 1]
        Q1 --> W2[Worker 2]
        Q1 --> W3[Worker 3]
    end

    subgraph Mesh["🕸️ Mesh"]
        M1[Agent] <--> M2[Agent]
        M2 <--> M3[Agent]
        M3 <--> M1[Agent]
    end

    subgraph Ring["💍 Ring"]
        R1[Agent] --> R2[Agent]
        R2 --> R3[Agent]
        R3 --> R1
    end

    subgraph Star["⭐ Star"]
        S1[Hub] --> S2[Agent]
        S1 --> S3[Agent]
        S1 --> S4[Agent]
    end
flowchart TB
    subgraph Input["📥 Input Validation"]
        Req[Request] --> Scan[AIDefence Scan]
        Scan --> PII[PII Detection]
        Scan --> Inject[Injection Check]
        Scan --> Jailbreak[Jailbreak Detection]
    end

    subgraph Decision["⚖️ Decision"]
        PII --> Risk{Risk Level}
        Inject --> Risk
        Jailbreak --> Risk
    end

    subgraph Action["🎬 Action"]
        Risk -->|Safe| Allow[✅ Allow]
        Risk -->|Warning| Sanitize[🧹 Sanitize]
        Risk -->|Threat| Block[⛔ Block]
    end

    subgraph Learn["📚 Learning"]
        Allow --> Log[Log Pattern]
        Sanitize --> Log
        Block --> Log
        Log --> Update[Update Model]
    end

🔌 Setup & Configuration

Connect Ruflo to your development environment.

Ruflo runs as an MCP (Model Context Protocol) server, allowing you to connect it to any MCP-compatible AI client. This means you can use Ruflo's 60+ agents, swarm coordination, and self-learning capabilities from Claude Desktop, VS Code, Cursor, Windsurf, ChatGPT, and more.

Quick Add Command

# Start Ruflo MCP server in any environment
npx ruflo@v3alpha mcp start

Config Location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Access: Claude → Settings → Developers → Edit Config

{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@v3alpha", "mcp", "start"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Restart Claude Desktop after saving. Look for the MCP indicator (hammer icon) in the input box.

Sources: Claude Help Center, Anthropic Desktop Extensions

# Add via CLI (recommended)
claude mcp add ruflo -- npx ruflo@v3alpha mcp start

# Or add with environment variables
claude mcp add ruflo \
  --env ANTHROPIC_API_KEY=sk-ant-... \
  -- npx ruflo@v3alpha mcp start

# Verify installation
claude mcp list

Sources: Claude Code MCP Docs

Requires: VS Code 1.102+ (MCP support is GA)

Method 1: Command Palette

  1. Press Cmd+Shift+P (Mac) / Ctrl+Shift+P (Windows)
  2. Run MCP: Add Server
  3. Enter server details

Method 2: Workspace Config

Create .vscode/mcp.json in your project:

{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@v3alpha", "mcp", "start"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Sources: VS Code MCP Docs, MCP Integration Guides

Method 1: One-Click (if available in Cursor MCP marketplace)

Method 2: Manual Config

Create .cursor/mcp.json in your project (or global config):

{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@v3alpha", "mcp", "start"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Important: Cursor must be in Agent Mode (not Ask Mode) to access MCP tools. Cursor supports up to 40 MCP tools.

Sources: Cursor MCP Docs, Cursor Directory

Config Location: ~/.codeium/windsurf/mcp_config.json

Access: Windsurf Settings → Cascade → MCP Servers, or click the hammer icon in Cascade panel

{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@v3alpha", "mcp", "start"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Click Refresh in the MCP settings to connect. Windsurf supports up to 100 MCP tools.

Sources: Windsurf MCP Tutorial, Windsurf Cascade Docs

Requires: ChatGPT Pro or Plus subscription with Developer Mode enabled

Setup:

  1. Go to Settings → Connectors → Advanced
  2. Enable Developer Mode (beta)
  3. Add your MCP Server in the Connectors tab

Remote Server Setup:

For ChatGPT, you need a remote MCP server (not local stdio). Deploy ruflo to a server with HTTP transport:

# Start with HTTP transport
npx ruflo@v3alpha mcp start --transport http --port 3000

Then add the server URL in ChatGPT Connectors settings.

Sources: OpenAI MCP Docs, Docker MCP for ChatGPT

Google AI Studio supports MCP natively since May 2025, with managed MCP servers for Google services (Maps, BigQuery, etc.) launched December 2025.

Using MCP SuperAssistant Extension:

  1. Install MCP SuperAssistant Chrome extension
  2. Configure your ruflo MCP server
  3. Use with Google AI Studio, Gemini, and other AI platforms

Native SDK Integration:

import { GoogleGenAI } from '@google/genai';

const ai = new GoogleGenAI({ apiKey: 'YOUR_API_KEY' });

// MCP definitions are natively supported in the Gen AI SDK
const mcpConfig = {
  servers: [{
    name: 'ruflo',
    command: 'npx',
    args: ['ruflo@v3alpha', 'mcp', 'start']
  }]
};

Sources: Google AI Studio MCP, Google Cloud MCP Announcement

JetBrains AI Assistant supports MCP for IntelliJ IDEA, PyCharm, WebStorm, and other JetBrains IDEs.

Setup:

  1. Open Settings → Tools → AI Assistant → MCP
  2. Click Add Server
  3. Configure:
{
  "name": "ruflo",
  "command": "npx",
  "args": ["ruflo@v3alpha", "mcp", "start"]
}

Sources: JetBrains AI Assistant MCP

Environment Variables

All configurations support these environment variables:

| Variable | Description | Required | |----------|-------------|----------| | ANTHROPIC_API_KEY | Your Anthropic API key | Yes (for Claude models) | | OPENAI_API_KEY | OpenAI API key | Optional (for GPT models) | | GOOGLE_API_KEY | Google AI API key | Optional (for Gemini) | | CLAUDE_FLOW_LOG_LEVEL | Logging level (debug, info, warn, error) | Optional | | CLAUDE_FLOW_TOOL_GROUPS | MCP tool groups to enable (comma-separated) | Optional | | CLAUDE_FLOW_TOOL_MODE | Preset tool mode (develop, pr-review, devops, etc.) | Optional |

MCP Tool Groups

Control which MCP tools are loaded to reduce latency and token usage:

# Enable specific tool groups
export CLAUDE_FLOW_TOOL_GROUPS=implement,test,fix,memory

# Or use a preset mode
export CLAUDE_FLOW_TOOL_MODE=develop

Available Groups: create, issue, branch, implement, test, fix, optimize, monitor, security, memory, all, minimal

Preset Modes: | Mode | Groups | Use Case | |------|--------|----------| | develop | create, implement, test, fix, memory | Active development | | pr-review | branch, fix, monitor, security | Code review | | devops | create, monitor, optimize, security | Infrastructure | | triage | issue, monitor, fix | Bug triage |

Precedence: CLI args (--tools=X) > Environment vars > Config file > Default (all)

Security Best Practices

⚠️ Never hardcode API keys in config files checked into version control.

# Use environment variables instead
export ANTHROPIC_API_KEY="sk-ant-..."

# Or use a .env file (add to .gitignore)
echo "ANTHROPIC_API_KEY=sk-ant-..." >> .env

Overview

@claude-flow/guidance turns CLAUDE.md into a runtime governance system with enforcement gates, cryptographic proofs, and feedback loops. Agents that normally drift after 30 minutes can now operate for days — rules are enforced mechanically at every step, not remembered by the model.

7-phase pipeline: Compile → Retrieve → Enforce → Trust → Prove → Defend → Evolve

| Capability | Description | |-----------|-------------| | Compile | Parses CLAUDE.md into typed policy bundles (constitution + task-scoped shards) | | Retrieve | Intent-classified shard retrieval with semantic similarity and risk filters | | Enforce | 4 gates the model cannot bypass (destructive ops, tool allowlist, diff size, secrets) | | Trust | Per-agent trust accumulation with privilege tiers and coherence-driven throttling | | Prove | HMAC-SHA256 hash-chained proof envelopes for cryptographic run auditing | | Defend | Prompt injection, memory poisoning, and inter-agent collusion detection | | Evolve | Optimizer loop that ranks violations, simulates rule changes, and promotes winners |

Install

npm install @claude-flow/guidance@alpha

Quick Usage

import {
  createCompiler,
  createRetriever,
  createGates,
  createLedger,
  createProofChain,
} from '@claude-flow/guidance';

// Compile CLAUDE.md into a policy bundle
const compiler = createCompiler();
const bundle = await compiler.compile(claudeMdText);

// Retrieve task-relevant rules
const retriever = createRetriever();
await retriever.loadBundle(bundle);
const { shards, policyText } = await retriever.retrieve({
  taskDescription: 'Fix authentication bug in login flow',
});

// Enforce gates on tool calls
const gates = createGates(bundle);
const result = gates.evaluate({ tool: 'bash', args: { command: 'rm -rf /' } });
// result.blocked === true

// Audit with proof chain
const chain = createProofChain({ signingKey: process.env.PROOF_KEY! });
const envelope = chain.seal(runEvent);
chain.verify(envelope); // true — tamper-evident

Key Modules

| Import Path | Purpose | |-------------|---------| | @claude-flow/guidance | Main entry — GuidanceControlPlane | | @claude-flow/guidance/compiler | CLAUDE.md → PolicyBundle compiler | | @claude-flow/guidance/retriever | Intent classification + shard retrieval | | @claude-flow/guidance/gates | 4 enforcement gates | | @claude-flow/guidance/ledger | Run event logging + evaluators | | @claude-flow/guidance/proof | HMAC-SHA256 proof chain | | @claude-flow/guidance/adversarial | Threat, collusion, memory quorum | | @claude-flow/guidance/trust | Trust accumulation + privilege tiers | | @claude-flow/guidance/authority | Human authority + irreversibility classification | | @claude-flow/guidance/wasm-kernel | WASM-accelerated security-critical paths | | @claude-flow/guidance/analyzer | CLAUDE.md quality analysis + A/B benchmarking | | @claude-flow/guidance/conformance-kit | Headless conformance test runner |

Stats

  • 1,331 tests across 26 test files
  • 27 subpath exports for tree-shaking
  • WASM kernel for security-critical hot paths (gates, proof, scoring)
  • 25 ADRs documenting every architectural decision

Documentation


📦 Core Features

Comprehensive capabilities for enterprise-grade AI agent orchestration.

Comprehensive feature set for enterprise-grade AI agent orchestration.

Pre-built agents for every development task, from coding to security audits.

| Category | Agent Count | Key Agents | Purpose | |----------|-------------|------------|---------| | Core Development | 5 | coder, reviewer, tester, planner, researcher | Daily development tasks | | V3 Specialized | 10 | queen-coordinator, security-architect, memory-specialist | Enterprise orchestration | | Swarm Coordination | 5 | hierarchical-coordinator, mesh-coordinator, adaptive-coordinator | Multi-agent patterns | | Consensus & Distributed | 7 | byzantine-coordinator, raft-manager, gossip-coordinator | Fault-tolerant coordination | | Performance | 5 | perf-analyzer, performance-benchmarker, task-orchestrator | Optimization & monitoring | | GitHub & Repository | 9 | pr-manager, code-review-swarm, issue-tracker, release-manager | Repository automation | | SPARC Methodology | 6 | sparc-coord, specification, pseudocode, architecture | Structured development | | Specialized Dev | 8 | backend-dev, mobile-dev, ml-developer, cicd-engineer | Domain expertise |

Choose the right topology for your task complexity and team size.

| Topology | Recommended Agents | Best For | Execution Time | Memory/Agent | |----------|-------------------|----------|----------------|--------------| | Hierarchical | 6+ | Structured tasks, clear authority chains | 0.20s | 256 MB | | Mesh | 4+ | Collaborative work, high redundancy | 0.15s | 192 MB | | Ring | 3+ | Sequential processing pipelines | 0.12s | 128 MB | | Star | 5+ | Centralized control, spoke workers | 0.14s | 180 MB | | Hybrid (Hierarchical-Mesh) | 7+ | Complex multi-domain tasks | 0.18s | 320 MB | | Adaptive | 2+ | Dynamic workloads, auto-scaling | Variable | Dynamic |

The Hive Mind system implements queen-led hierarchical coordination where strategic queen agents direct specialized workers through collective decision-making and shared memory.

Queen Types:

| Queen Type | Best For | Strategy | |------------|----------|----------| | Strategic | Research, planning, analysis | High-level objective coordination | | Tactical | Implementation, execution | Direct task management | | Adaptive | Optimization, dynamic tasks | Real-time strategy adjustment |

Worker Specializations (8 types): researcher, coder, analyst, tester, architect, reviewer, optimizer, documenter

Consensus Mechanisms:

| Algorithm | Voting | Fault Tolerance | Best For | |-----------|--------|-----------------|----------| | Majority | Simple democratic | None | Quick decisions | | Weighted | Queen 3x weight | None | Strategic guidance | | Byzantine | 2/3 supermajority | f < n/3 faulty | Critical decisions |

Collective Memory Types:

  • knowledge (permanent), context (1h TTL), task (30min TTL), result (permanent)
  • error (24h TTL), metric (1h TTL), consensus (permanent), system (permanent)

CLI Commands:

npx ruflo hive-mind init                    # Initialize hive mind
npx ruflo hive-mind spawn "Build API"       # Spawn with objective
npx ruflo hive-mind spawn "..." --queen-type strategic --consensus byzantine
npx ruflo hive-mind status                  # Check status
npx ruflo hive-mind metrics                 # Performance metrics
npx ruflo hive-mind memory                  # Collective memory stats
npx ruflo hive-mind sessions                # List active sessions

Performance: Fast batch spawning with parallel agent coordination

Native integration with Claude Code's experimental Agent Teams feature for spawning and coordinating multiple Claude instances.

Enable Agent Teams:

# Automatically enabled with ruflo init
npx ruflo@latest init

# Or manually add to .claude/settings.json
{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

Agent Teams Components:

| Component | Tool | Purpose | |-----------|------|---------| | Team Lead | Main Claude | Coordinates teammates, assigns tasks, reviews results | | Teammates | Task tool | Sub-agents spawned to work on specific tasks | | Task List | TaskCreate/TaskList/TaskUpdate | Shared todos visible to all team members | | Mailbox | SendMessage | Inter-agent messaging for coordination |

Quick Start:

// Create a team
TeamCreate({ team_name: "feature-dev", description: "Building feature" })

// Create shared tasks
TaskCreate({ subject: "Design API", description: "..." })
TaskCreate({ subject: "Implement endpoints", description: "..." })

// Spawn teammates (parallel background work)
Task({ prompt: "Work on task #1...", subagent_type: "architect",
       team_name: "feature-dev", name: "architect", run_in_background: true })
Task({ prompt: "Work on task #2...", subagent_type: "coder",
       team_name: "feature-dev", name: "developer", run_in_background: true })

// Message teammates
SendMessage({ type: "message", recipient: "developer",
              content: "Prioritize auth", summary: "Priority update" })

// Cleanup when done
SendMessage({ type: "shutdown_request", recipient: "developer" })
TeamDelete()

Agent Teams Hooks:

| Hook | Trigger | Purpose | |------|---------|---------| | teammate-idle | Teammate finishes turn | Auto-assign pending tasks | | task-completed | Task marked complete | Train patterns, notify lead |

# Handle idle teammate
npx ruflo@latest hooks teammate-idle --auto-assign true

# Handle task completion
npx ruflo@latest hooks task-completed --task-id <id> --train-patterns

Display Modes: auto (default), in-process, tmux (split-pane)

Full MCP server with tools for coordination, monitoring, memory, and GitHub integration.

| Category | Tools | Description | |----------|-------|-------------| | Coordination | swarm_init, agent_spawn, task_orchestrate | Swarm and agent lifecycle management | | Monitoring | swarm_status, `agent_