Back to Ruflo

ruflo-core

plugins/ruflo-core/README.md

3.6.304.6 KB
Original Source

ruflo-core

Foundation plugin. Registers the ruflo MCP server (300+ tools), provides three generalist agents (coder, researcher, reviewer), three first-run helpers (init-project, ruflo-doctor, discover-plugins), and a curated catalog covering all 30+ sibling plugins.

Install

/plugin marketplace add ruvnet/ruflo
/plugin install ruflo-core@ruflo

What's Included

  • MCP Server: 300+ tools via @claude-flow/cli (memory, agentdb, embeddings, hooks, neural, autopilot, browser, aidefence, agent, swarm, system, terminal, github, daa, coordination, performance, workflow, …)
  • CLI Commands: 26 commands with 140+ subcommands for agent orchestration
  • 3-Tier Model Routing: Agent Booster (WASM), Haiku, Sonnet/Opus with automatic cost optimization
  • Session Management: Persistent sessions with cross-conversation learning
  • Hooks: PreToolUse / PostToolUse / PreCompact / Stop wired to claude-flow's auto-routing + learning loop. Defined at plugins/ruflo-core/hooks/hooks.json so the per-plugin loader picks them up on /plugin install ruflo-core@ruflo (per-plugin layout — fixes #1748 Issue 1; the marketplace-root copy at .claude-plugin/hooks/hooks.json is preserved for claude --plugin-dir <repo-root> users).

Configuration

The MCP server starts automatically when this plugin is active. Override environment variables in .mcp.json as needed.

Compatibility

  • CLI: pinned to @claude-flow/cli v3.6 major+minor. The .mcp.json invocation uses @latest for dynamic resolution; the smoke contract verifies the resolved CLI matches the v3.6 line.
  • Verification: bash plugins/ruflo-core/scripts/smoke.sh is the contract.

MCP server contract

The registered ruflo MCP server exposes 300+ tools across these families. Runtime truth is mcp tool call mcp_status:

FamilyNotable toolsPlugin documenting it
memory_*memory_store, _search, _search_unified, _import_claude, _bridge_statusruflo-rag-memory
agentdb_*15 tools for hierarchical / pattern / causal storageruflo-agentdb
embeddings_*10 tools incl. RaBitQ 32× quantizationruflo-agentdb, ruflo-ruvector
hooks_* (incl. hooks_intelligence_*)19+ tools — routing, learning, transfer, metrics, explainruflo-intelligence, ruflo-autopilot
aidefence_*6 tools — PII / prompt-injection / sanitizationruflo-aidefence
neural_*6 tools — train, predict, patterns, compressruflo-intelligence
autopilot_*10 tools — autonomous loops + learningruflo-autopilot
browser_* (+ new browser_session_*)23 + 5 = 28 tools — Playwright + RVF lifecycleruflo-browser
ruvllm_sona_* / ruvllm_microlora_*4 tools — adaptive learningruflo-intelligence, ruflo-ruvllm
agent_*, swarm_*spawn, list, status, orchestrateruflo-swarm
system_*, terminal_*system + terminal session opsthis plugin

For every other plugin's tool surface, see its docs/adrs/0001-*.md.

Sibling contracts

This foundation plugin defers to seven sibling ADRs that own specific cross-cutting contracts. New plugins (and consumers of ruflo-core) should reference these instead of re-deriving:

ContractOwner
Pinning + smoke as contract (general pattern)ruflo-ruvector ADR-0001
Namespace convention (<plugin-stem>-<intent>, reserved namespaces)ruflo-agentdb ADR-0001
Session-as-skill architecture (RVF + trajectory + 3 AIDefence gates)ruflo-browser ADR-0001
4-step intelligence pipeline (RETRIEVE → JUDGE → DISTILL → CONSOLIDATE)ruflo-intelligence ADR-0001
3-gate AIDefence pattern (PII pre-storage, sanitization, prompt-injection)ruflo-aidefence ADR-0001
270s cache-aware /loop heartbeatruflo-autopilot ADR-0001
ADR plugin contract (token-optimization via REFERENCE.md)ruflo-adr ADR-0001

Verification

bash
bash plugins/ruflo-core/scripts/smoke.sh
# Expected: "10 passed, 0 failed"

Architecture Decisions