-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Quick Start
ruv edited this page May 25, 2026
·
3 revisions
Get your first swarm running in 5 minutes.
npx ruflo@latest init wizardFollow the prompts. This creates:
-
.claude/— Ruflo config -
.claude-flow/— Plugin settings -
CLAUDE.md— Agent definitions and hooks
npx ruflo@latest daemon startThis enables background workers and autonomous task loops.
Initialize a hierarchical swarm (recommended for learning):
npx ruflo@latest swarm init --topology hierarchical --max-agents 8 --strategy specializedThis creates a coordinated team with a central coordinator and 7 worker agents.
npx ruflo@latest agent spawn -t coder --name my-coderList all agents:
npx ruflo@latest agent listStore a pattern:
npx ruflo@latest memory store --key "auth-pattern" --value "JWT with refresh tokens" --namespace patternsSearch:
npx ruflo@latest memory search --query "authentication" --namespace patternsOpen Claude Code and run a task:
@task
Analyze the src/auth module for security issues. Use the memory system to find relevant patterns.
Claude Code will:
- Route the task via hooks
- Spawn a researcher agent
- Search memory for past authentication audits
- Execute the analysis
| Task | Command |
|---|---|
| Check swarm status | npx ruflo@latest swarm status |
| List all agents | npx ruflo@latest agent list |
| Stop an agent | npx ruflo@latest agent stop <agent-id> |
| Search memory | npx ruflo@latest memory search --query "..." |
| View hooks | npx ruflo@latest hooks list |
| Run benchmarks | npx ruflo@latest performance benchmark |
| Security scan | npx ruflo@latest security scan |
- CLI Reference — All 26 commands
- MCP Tools — 314 tools for advanced use
- Agents — 60+ agent types and roles
- Memory & Graph — Persistent knowledge
- Benchmarks — See Ruflo in action
Ruflo v3.10.1 · GitHub
Ruflo v3.10.1 · npm · GitHub · Benchmarks