1---2name: discover-plugins3description: Discover and recommend ruflo plugins based on your workflow, installed MCP tools, and current task4---5
6# Discover Plugins
7
8Find and recommend ruflo plugins for your workflow.
9
10## When to use
11
12When starting a new project, exploring ruflo capabilities, or wondering which plugins would help with your current task.
13
14## Steps
15
161. **Check installed** — run `ls plugins/` to see what's already installed
172. **Browse marketplace** — call `mcp__plugin_ruflo-core_ruflo__transfer_plugin-featured` for recommended plugins
183. **Search by need** — call `mcp__plugin_ruflo-core_ruflo__transfer_plugin-search` with keywords matching your task
194. **Get recommendations** — call `mcp__plugin_ruflo-core_ruflo__guidance_recommend` with your current task description for personalized suggestions
205. **Check capabilities** — call `mcp__plugin_ruflo-core_ruflo__guidance_capabilities` to see what each plugin enables
216. **Show details** — call `mcp__plugin_ruflo-core_ruflo__transfer_plugin-info` for full plugin details
22
23## Plugin Catalog (32 plugins)
24
25### Core & Coordination — Start here
26
27| Plugin | When to use | What it adds |
28|--------|-------------|-------------|
29| **ruflo-core** | Always — base layer for all Ruflo work | MCP server, status, doctor, coder/researcher/reviewer agents |
30| **ruflo-swarm** | Multi-agent tasks (3+ files, features, refactors) | Swarm topologies (hierarchical, mesh), Monitor streaming, worktree isolation |
31| **ruflo-autopilot** | Autonomous task completion without manual steering | /loop-based autonomous execution, progress prediction, learning |
32| **ruflo-loop-workers** | Recurring background work (audits, optimization, mapping) | 12 background workers via /loop or CronCreate scheduling |
33| **ruflo-workflows** | Repeatable multi-step processes | Workflow templates, parallel execution, conditional branching |
34
35### Memory & Intelligence — Cross-session learning
36
37| Plugin | When to use | What it adds |
38|--------|-------------|-------------|
39| **ruflo-agentdb** | Semantic search over code patterns, telemetry, decisions | AgentDB with HNSW vector search (150x-12,500x faster), RuVector embeddings |
40| **ruflo-rag-memory** | Simple key-value memory with search | Store/search/recall without full AgentDB setup |
41| **ruflo-rvf** | Portable memory export/import across machines | RVF format, session persistence, cross-platform transfer |
42| **ruflo-ruvector** | Vector embedding operations, HNSW indexing, clustering | ONNX 384-dim embeddings, hyperbolic Poincare ball, k-means/DBSCAN clustering |
43| **ruflo-knowledge-graph** | Entity extraction, relation mapping, graph traversal | Pathfinder algo on AgentDB causal edges, code entity graphs |
44| **ruflo-intelligence** | Task routing optimization, learning from outcomes | SONA neural patterns, trajectory learning, model routing with confidence |
45| **ruflo-daa** | Self-adapting agents that evolve behavior | Dynamic Agentic Architecture, cognitive patterns, knowledge sharing |
46
47### Architecture & Methodology — Build right
48
49| Plugin | When to use | What it adds |
50|--------|-------------|-------------|
51| **ruflo-adr** | Document architecture decisions, check compliance | ADR create/index/supersede, code-to-ADR linking, compliance checking on diffs |
52| **ruflo-ddd** | Domain modeling, bounded context scaffolding | Context wizard, aggregate roots, domain events, anti-corruption layers, boundary validation |
53| **ruflo-sparc** | Structured development methodology | Specification-Pseudocode-Architecture-Refinement-Completion with quality gates |
54
55### Quality & Security — Ship safely
56
57| Plugin | When to use | What it adds |
58|--------|-------------|-------------|
59| **ruflo-security-audit** | Before merging, after dependency changes | CVE scanning, dependency vulnerability checks, security reports |
60| **ruflo-aidefence** | Processing user input, handling untrusted data | Prompt injection detection, PII scanning, adversarial defense |
61| **ruflo-testgen** | After implementing features, during refactors | Test gap detection, TDD London School workflow, coverage routing |
62| **ruflo-browser** | UI testing, web scraping, visual validation | Playwright automation — navigate, click, screenshot, validate |
63
64### Development Tools — Build faster
65
66| Plugin | When to use | What it adds |
67|--------|-------------|-------------|
68| **ruflo-jujutsu** | PR review, merge decisions, diff risk scoring | Diff analysis, risk classification, reviewer recommendations |
69| **ruflo-docs** | After API changes, before releases | Doc generation, drift detection, API documentation |
70| **ruflo-ruvllm** | Local LLM inference, custom model configs | RuVLLM integration, MicroLoRA fine-tuning, chat formatting |
71| **ruflo-agent** | Sandboxed code execution, untrusted workloads | WASM agent sandboxing, community gallery |
72| **ruflo-plugin-creator** | Building new ruflo plugins | Scaffold structure, validate frontmatter, test MCP references |
73| **ruflo-migrations** | Database schema changes | Sequential migration numbering, up/down pairs, dry-run, rollback validation |
74| **ruflo-observability** | Logging, tracing, metrics correlation | Structured JSON logging, distributed tracing, agent-to-app telemetry correlation |
75| **ruflo-cost-tracker** | Token budget management | Per-agent cost attribution, model pricing, budget alerts, optimization recommendations |
76
77### Domain-Specific — Specialized workloads
78
79| Plugin | When to use | What it adds |
80|--------|-------------|-------------|
81| **ruflo-goals** | Long-horizon planning, multi-session research | GOAP algorithm, deep research orchestration, horizon tracking, synthesis |
82| **ruflo-federation** | Cross-installation agent coordination | Zero-trust peer discovery, mTLS auth, consensus routing, compliance audit |
83| **ruflo-iot-cognitum** | Cognitum Seed hardware device management | 5-tier device trust, telemetry anomaly detection (Z-score), fleet firmware rollouts, witness chain verification, SONA + AgentDB integration |
84| **ruflo-neural-trader** | Trading strategy development and backtesting | Z-score market anomalies, SONA trajectory strategies, walk-forward backtesting, portfolio optimization |
85| **ruflo-market-data** | Market data ingestion and pattern matching | OHLCV vectorization, candlestick pattern detection, HNSW-indexed historical search |
86
87## Decision Guide
88
89**"I need to..."** → Use this plugin:
90
91- Build a feature → `ruflo-core` + `ruflo-swarm` + `ruflo-testgen`
92- Fix a bug → `ruflo-core` + `ruflo-jujutsu` (for diff analysis)
93- Audit security → `ruflo-security-audit` + `ruflo-aidefence`
94- Run background tasks → `ruflo-loop-workers` + `ruflo-autopilot`
95- Search past decisions → `ruflo-agentdb` + `ruflo-rag-memory`
96- Plan a multi-week effort → `ruflo-goals` (horizon tracking)
97- Manage IoT devices → `ruflo-iot-cognitum`
98- Coordinate remote agents → `ruflo-federation`
99- Test UI changes → `ruflo-browser`
100- Generate docs → `ruflo-docs`
101- Create a new plugin → `ruflo-plugin-creator`
102- Document architecture decisions → `ruflo-adr`
103- Scaffold domain models → `ruflo-ddd`
104- Follow SPARC methodology → `ruflo-sparc`
105- Develop trading strategies → `ruflo-neural-trader` + `ruflo-market-data`
106- Work with vector embeddings → `ruflo-ruvector`
107- Build knowledge graphs → `ruflo-knowledge-graph`
108- Manage database migrations → `ruflo-migrations`
109- Add observability → `ruflo-observability`
110- Track token costs → `ruflo-cost-tracker`
111
112## Install any plugin
113
114```
115/plugin marketplace add ruvnet/ruflo
116/plugin install <plugin-name>@ruflo
117```