Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/ruvnet/ruflo/llms.txt

Use this file to discover all available pages before exploring further.

The plugin system extends Ruflo’s capabilities through a curated marketplace of 35 official plugins. Plugins add MCP tools, lifecycle hooks, background workers, slash commands, and agent definitions to your Ruflo installation. They compose freely: install a memory plugin alongside a security plugin and both integrate into the same hooks system and MCP server automatically.

Managing Plugins

# Install a plugin
npx ruflo@latest plugins install -n ruflo-rag-memory

# List installed plugins
npx ruflo@latest plugins list

# Update a plugin to the latest version
npx ruflo@latest plugins update -n ruflo-rag-memory

# Remove a plugin
npx ruflo@latest plugins remove -n ruflo-rag-memory
Plugins installed via npx ruflo@latest plugins install register their MCP tools and hooks into the running Ruflo server automatically. No manual configuration is required. Use /plugin install inside Claude Code for the slash-command-only (lite) install path that does not register MCP tools.

Core & Orchestration

These six plugins form the foundation of any Ruflo installation. ruflo-core is a dependency of all other plugins.
PluginWhat It DoesInstall
ruflo-coreFoundation: server, health checks, plugin discoverynpx ruflo@latest plugins install -n ruflo-core
ruflo-swarmCoordinate multiple agents as a teamnpx ruflo@latest plugins install -n ruflo-swarm
ruflo-autopilotLet agents run autonomously in a loopnpx ruflo@latest plugins install -n ruflo-autopilot
ruflo-loop-workersSchedule background tasks on a timernpx ruflo@latest plugins install -n ruflo-loop-workers
ruflo-workflowsReusable multi-step task templatesnpx ruflo@latest plugins install -n ruflo-workflows
ruflo-federationAgents on different machines collaborate securelynpx ruflo@latest plugins install -n ruflo-federation
ruflo-federation implements the zero-trust agent communication layer: identity via mTLS + ed25519 challenge-response, PII-gated data flow with 14-type detection, behavioral trust scoring, and HIPAA/SOC2/GDPR audit trails. Agents on different machines or orgs discover each other, prove identity, and exchange work — with secrets stripped before anything leaves your node.

Memory & Knowledge

PluginWhat It DoesInstall
ruflo-agentdbFast vector database for agent memorynpx ruflo@latest plugins install -n ruflo-agentdb
ruflo-rag-memorySmart retrieval: hybrid search, graph hops, diversity rankingnpx ruflo@latest plugins install -n ruflo-rag-memory
ruflo-rvfSave and restore agent memory across sessionsnpx ruflo@latest plugins install -n ruflo-rvf
ruflo-ruvectorGPU-accelerated search, Graph RAG, 103 toolsnpx ruflo@latest plugins install -n ruflo-ruvector
ruflo-knowledge-graphBuild and traverse entity relationship mapsnpx ruflo@latest plugins install -n ruflo-knowledge-graph
ruflo-agentdb is the recommended default memory backend. It provides HNSW-indexed vector search that is measured ~1.9x faster than brute force at N=20k and ~3.2x–4.7x faster at N=5k, with recall@10 of approximately 0.99. ruflo-ruvector exposes the full RuVector agentic database: GPU-accelerated HNSW, Graph RAG, Flash Attention (2.49–7.47x speedup), and 103 MCP tools. Use this when you need the full intelligence stack beyond what the built-in AgentDB provides.

Intelligence & Learning

PluginWhat It DoesInstall
ruflo-intelligenceAgents learn from past successesnpx ruflo@latest plugins install -n ruflo-intelligence
ruflo-graph-intelligenceSublinear graph reasoning: PageRank, delta updatesnpx ruflo@latest plugins install -n ruflo-graph-intelligence
ruflo-daaDynamic agent behavior and cognitive patternsnpx ruflo@latest plugins install -n ruflo-daa
ruflo-ruvllmRun local LLMs (Ollama, etc.) with smart routingnpx ruflo@latest plugins install -n ruflo-ruvllm
ruflo-goalsBreak big goals into plans and track progressnpx ruflo@latest plugins install -n ruflo-goals
ruflo-graph-intelligence implements the knowledge graph layer (ADR-123): PageRank-ranked insights, Jaccard-similarity community detection, and delta updates that avoid full re-indexing on every session. Pairs with ruflo-agentdb for the full intelligence loop. ruflo-ruvllm integrates local LLM providers (Ollama, LM Studio, vLLM, Together, Groq) with the same smart routing as the cloud providers. Cost-based routing selects the cheapest model that meets the task’s quality requirements; automatic failover tries the next provider if one is unavailable.

Code Quality & Testing

PluginWhat It DoesInstall
ruflo-testgenFind missing tests and generate them automaticallynpx ruflo@latest plugins install -n ruflo-testgen
ruflo-browserAutomate browser testing with Playwrightnpx ruflo@latest plugins install -n ruflo-browser
ruflo-jujutsuAnalyze git diffs, score risk, suggest reviewersnpx ruflo@latest plugins install -n ruflo-jujutsu
ruflo-docsGenerate and maintain documentation automaticallynpx ruflo@latest plugins install -n ruflo-docs
ruflo-testgen hooks into the testgaps background worker to detect code changes without corresponding test coverage and generates the missing tests automatically using the coder and tester agent types.

Security & Compliance

PluginWhat It DoesInstall
ruflo-security-auditScan for vulnerabilities and CVEsnpx ruflo@latest plugins install -n ruflo-security-audit
ruflo-aidefenceBlock prompt injection, detect PII, safety scanningnpx ruflo@latest plugins install -n ruflo-aidefence
ruflo-aidefence is the recommended first-line security layer for any production installation. It intercepts all inbound tool calls and message content, blocks prompt injection attempts, detects and redacts PII (14 entity types), and emits structured audit events for compliance reporting.

Architecture & Methodology

PluginWhat It DoesInstall
ruflo-adrTrack architecture decisions with a living recordnpx ruflo@latest plugins install -n ruflo-adr
ruflo-dddScaffold domain-driven design: contexts, aggregates, eventsnpx ruflo@latest plugins install -n ruflo-ddd
ruflo-sparcGuided 5-phase development methodology with quality gatesnpx ruflo@latest plugins install -n ruflo-sparc
ruflo-metaharnessGrade your agent setup, scan tool configs for security risksnpx ruflo@latest plugins install -n ruflo-metaharness
ruflo-arenaCompetitive ruliology: pit agent strategies in tournamentsnpx ruflo@latest plugins install -n ruflo-arena
ruflo-metaharness audits your Ruflo installation itself: grades agent readiness on a 1–100 scale, scans tool configurations for security issues, snapshots the project state to catch regressions over time, and matches your repo to known-good templates. ruflo eject converts a Ruflo project into a standalone agent toolkit with its own name and no Ruflo dependency. ruflo-arena runs competitive hill-climbing tournaments between agent strategies (ADR-147/148). Strategies compete on benchmark tasks, winners are co-evolved, and the best-performing configurations propagate back into your routing table.

DevOps & Observability

PluginWhat It DoesInstall
ruflo-migrationsManage database schema changes safelynpx ruflo@latest plugins install -n ruflo-migrations
ruflo-observabilityStructured logs, traces, and metrics in one placenpx ruflo@latest plugins install -n ruflo-observability
ruflo-cost-trackerTrack token usage, set budgets, get cost alertsnpx ruflo@latest plugins install -n ruflo-cost-tracker
ruflo-cost-tracker integrates with the Thompson sampling model router to surface per-session and per-agent token costs, set hard budget limits that halt execution, and emit cost alerts when thresholds are crossed.

Extensibility

PluginWhat It DoesInstall
ruflo-agentRun agents: local WASM sandbox + Anthropic Cloud Managed Agentsnpx ruflo@latest plugins install -n ruflo-agent
ruflo-plugin-creatorScaffold, validate, and publish your own pluginsnpx ruflo@latest plugins install -n ruflo-plugin-creator
ruflo-agent provides two agent execution environments: a local WASM sandbox (rvagent) for isolation without network access, and Anthropic Claude Managed Agents (cloud) for full capability with managed compute.

Domain-Specific

PluginWhat It DoesInstall
ruflo-iot-cognitumIoT device management, trust scoring, anomaly detectionnpx ruflo@latest plugins install -n ruflo-iot-cognitum
ruflo-neural-traderAI trading with 4 agents, backtesting, 112+ toolsnpx ruflo@latest plugins install -n ruflo-neural-trader
ruflo-market-dataIngest market data, vectorize OHLCV, detect patternsnpx ruflo@latest plugins install -n ruflo-market-data
ruflo-neural-trader ships 4 specialized trading agents (signal generator, risk manager, execution engine, portfolio optimizer), 112+ MCP tools, and a full backtesting harness against historical OHLCV data. Pairs with ruflo-market-data for live data ingestion and ruflo-iot-cognitum for portfolio-adjacent device telemetry.
Ready to extend Ruflo with your own capabilities? The ruflo-plugin-creator plugin scaffolds a complete plugin project with typed MCP tools, hooks, workers, and a publish pipeline. See the Building Plugins guide for a step-by-step walkthrough.

Build docs developers (and LLMs) love