/vector
RuVector operations via npx ruvector@0.2.25 — embedding, search, RVF cognitive containers, GNN, attention, hooks, brain, sona, edge, identity
> /plugin marketplace add ruvnet/rufloHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/vector
Context preview
What this command does when you run it.
RuVector operations via npx ruvector@0.2.25 — embedding, search, RVF cognitive containers, GNN, attention, hooks, brain, sona, edge, identity
Command definition
vector.mdname: vector
description: RuVector operations via npx ruvector@0.2.25 — embedding, search, RVF cognitive containers, GNN, attention, hooks, brain, sona, edge, identity
$ARGUMENTS Vector operations via the `ruvector` npm package (pinned to 0.2.25). Parse subcommand from $ARGUMENTS.
Pinned version: `ruvector@0.2.25` — every command below uses `npx -y ruvector@0.2.25 ...`.
Usage: /vector <subcommand> [options]
Embedding
1. **embed `<text>`** — `npx -y ruvector@0.2.25 embed text "TEXT"` 384-dim ONNX vector. If `ONNX WASM files not bundled`, run `/vector setup`. 2. **embed-adaptive `<text>`** — `npx -y ruvector@0.2.25 embed text "TEXT" --adaptive --domain code` LoRA-adapted embedding tuned to a domain. 3. **embed-file `<path>`** — Read file, then `npx -y ruvector@0.2.25 embed text "$(cat <path>)" -o <path>.vec.json` 4. **embed-benchmark** — `npx -y ruvector@0.2.25 embed benchmark` (compares base vs adaptive).
Database lifecycle
5. **db create `<path>`** — `npx -y ruvector@0.2.25 create <path> -d 384 -m cosine` 6. **db stats `<path>`** — `npx -y ruvector@0.2.25 stats <path>` 7. **insert `<database>` `<json-file>`** — `npx -y ruvector@0.2.25 insert <database> <json-file>` 8. **search `<database>` `<vector-json>` [-k N]** — `npx -y ruvector@0.2.25 search <database> -v '[0.1,...]' -k N` 9. **export `<database>` [-o file] [-f json|binary|parquet] [--compress]** — `npx -y ruvector@0.2.25 export <database> -o backup.json` 10. **import `<file>` [-d database]** — `npx -y ruvector@0.2.25 import <file> -d <database> [--merge|--replace]`
RVF (cognitive containers)
11. **rvf create `<path>`** — `npx -y ruvector@0.2.25 rvf create <path>` 12. **rvf ingest `<path>`** — `npx -y ruvector@0.2.25 rvf ingest <path>` 13. **rvf query `<path>`** — `npx -y ruvector@0.2.25 rvf query <path>` (nearest neighbors) 14. **rvf status `<path>`** — `npx -y ruvector@0.2.25 rvf status <path>` 15. **rvf segments `<path>`** — `npx -y ruvector@0.2.25 rvf segments <path>` 16. **rvf derive `<parent>` `<child>`** — `npx -y ruvector@0.2.25 rvf derive <parent> <child>` (lineage tracking) 17. **rvf compact `<path>`** — `npx -y ruvector@0.2.25 rvf compact <path>` (reclaim deleted space) 18. **rvf examples** — `npx -y ruvector@0.2.25 rvf examples` (45 reference stores) 19. **rvf download `<name>`** — `npx -y ruvector@0.2.25 rvf download <name>` (e.g. `agent_memory`, `swarm_knowledge`)
GNN (Graph Neural Networks)
20. **gnn info** — `npx -y ruvector@0.2.25 gnn info` 21. **gnn layer** — `npx -y ruvector@0.2.25 gnn layer` (build/test a multi-head attention GNN layer) 22. **gnn search** — `npx -y ruvector@0.2.25 gnn search` (differentiable soft-attention search) 23. **gnn compress** — `npx -y ruvector@0.2.25 gnn compress` (5-level adaptive tensor compression)
Attention mechanisms
24. **attention list** — `npx -y ruvector@0.2.25 attention list` Lists ALL available mechanisms: DotProduct, MultiHead, Flash, Hyperbolic, Linear, MoE, GraphRoPe, EdgeFeatured, DualSpace, LocalGlobal. 25. **attention compute** — `npx -y ruvector@0.2.25 attention compute` 26. **attention benchmark** — `npx -y ruvector@0.2.25 attention benchmark` 27. **attention hyperbolic** — `npx -y ruvector@0.2.25 attention hyperbolic` (Poincare-ball geometry ops; the real hyperbolic surface in 0.2.25) 28. **attention info** — `npx -y ruvector@0.2.25 attention info`
Code intelligence (hooks)
29. **hooks init** — `npx -y ruvector@0.2.25 hooks init --pretrain --build-agents quality` 30. **hooks stats** — `npx -y ruvector@0.2.25 hooks stats` (Q-learning patterns, vector memories, trajectories) 31. **hooks route `<task>`** — `npx -y ruvector@0.2.25 hooks route "DESCRIPTION"` (positional) 32. **hooks route-enhanced `<task>`** — `npx -y ruvector@0.2.25 hooks route-enhanced "DESCRIPTION"` 33. **hooks suggest-context** — `npx -y ruvector@0.2.25 hooks suggest-context` 34. **hooks ast-analyze `<file>`** — `npx -y ruvector@0.2.25 hooks ast-analyze <file>` (positional) 35. **hooks ast-complexity `<files...>`** — `npx -y ruvector@0.2.25 hooks ast-complexity <files...>` 36. **hooks diff-analyze [commit]** — `npx -y ruvector@0.2.25 hooks diff-analyze HEAD` 37. **hooks diff-classify [commit]** — `npx -y ruvector@0.2.25 hooks diff-classify HEAD` 38. **hooks diff-similar** — `npx -y ruvector@0.2.25 hooks diff-similar` 39. **hooks coverage-route `<file>`** — `npx -y ruvector@0.2.25 hooks coverage-route <file>` 40. **hooks coverage-suggest `<files...>`** — `npx -y ruvector@0.2.25 hooks coverage-suggest <files...>` 41. **hooks graph-cluster `<files...>`** — `npx -y ruvector@0.2.25 hooks graph-cluster <files...>` (spectral/Louvain) 42. **hooks rag-context `<query>`** — `npx -y ruvector@0.2.25 hooks rag-context "QUERY"` 43. **hooks security-scan `<files...>`** — `npx -y ruvector@0.2.25 hooks security-scan <files...>` (run `hooks init` first) 44. **hooks remember `<content>`** — `npx -y ruvector@0.2.25 hooks remember "CONTENT"` 45. **hooks recall `<query>`** — `npx -y ruvector@0.2.25 hooks recall "QUERY"` 46. **hooks coedit-record / coedit-suggest** — record + retrieve files edited together. 47. **hooks error-record / error-suggest** — learn error→fix pairs and retrieve. 48. **hooks trajectory-begin / trajectory-step / trajectory-end** — record an execution trajectory. 49. **hooks pre-edit / post-edit / pre-command / post-command / session-start / session-end** — Claude Code hook lifecycle.
> **Known bugs in 0.2.25 hooks:** `force-learn` raises `intel.tick is not a function`; `graph-mincut` raises `Cannot read properties of undefined`; `git-churn` fails outside a git repo. Avoid these or run inside a git repo with seeded intelligence state.
Native + workers (background analysis)
50. **native list** — `npx -y ruvector@0.2.25 native list` (worker types: security, analysis, learning) 51. **native run `<type>`** — `npx -y ruvector@0.2.25 native run security` (or analysis|learning) 52. **native benchmark** — `npx -y ruvector@0.2.25 native benchmark` 53. **n
Read more
name: vector description: RuVector operations via npx ruvector@0.2.25 — embedding, search, RVF cognitive containers, GNN, attention, hooks, brain, sona, edge, identity
$ARGUMENTS Vector operations via the `ruvector` npm package (pinned to 0.2.25). Parse subcommand from $ARGUMENTS.
Pinned version: `ruvector@0.2.25` — every command below uses `npx -y ruvector@0.2.25 ...`.
Usage: /vector <subcommand> [options]
Embedding
1. **embed `<text>`** — `npx -y ruvector@0.2.25 embed text "TEXT"` 384-dim ONNX vector. If `ONNX WASM files not bundled`, run `/vector setup`. 2. **embed-adaptive `<text>`** — `npx -y ruvector@0.2.25 embed text "TEXT" --adaptive --domain code` LoRA-adapted embedding tuned to a domain. 3. **embed-file `<path>`** — Read file, then `npx -y ruvector@0.2.25 embed text "$(cat <path>)" -o <path>.vec.json` 4. **embed-benchmark** — `npx -y ruvector@0.2.25 embed benchmark` (compares base vs adaptive).
Database lifecycle
5. **db create `<path>`** — `npx -y ruvector@0.2.25 create <path> -d 384 -m cosine` 6. **db stats `<path>`** — `npx -y ruvector@0.2.25 stats <path>` 7. **insert `<database>` `<json-file>`** — `npx -y ruvector@0.2.25 insert <database> <json-file>` 8. **search `<database>` `<vector-json>` [-k N]** — `npx -y ruvector@0.2.25 search <database> -v '[0.1,...]' -k N` 9. **export `<database>` [-o file] [-f json|binary|parquet] [--compress]** — `npx -y ruvector@0.2.25 export <database> -o backup.json` 10. **import `<file>` [-d database]** — `npx -y ruvector@0.2.25 import <file> -d <database> [--merge|--replace]`
RVF (cognitive containers)
11. **rvf create `<path>`** — `npx -y ruvector@0.2.25 rvf create <path>` 12. **rvf ingest `<path>`** — `npx -y ruvector@0.2.25 rvf ingest <path>` 13. **rvf query `<path>`** — `npx -y ruvector@0.2.25 rvf query <path>` (nearest neighbors) 14. **rvf status `<path>`** — `npx -y ruvector@0.2.25 rvf status <path>` 15. **rvf segments `<path>`** — `npx -y ruvector@0.2.25 rvf segments <path>` 16. **rvf derive `<parent>` `<child>`** — `npx -y ruvector@0.2.25 rvf derive <parent> <child>` (lineage tracking) 17. **rvf compact `<path>`** — `npx -y ruvector@0.2.25 rvf compact <path>` (reclaim deleted space) 18. **rvf examples** — `npx -y ruvector@0.2.25 rvf examples` (45 reference stores) 19. **rvf download `<name>`** — `npx -y ruvector@0.2.25 rvf download <name>` (e.g. `agent_memory`, `swarm_knowledge`)
GNN (Graph Neural Networks)
20. **gnn info** — `npx -y ruvector@0.2.25 gnn info` 21. **gnn layer** — `npx -y ruvector@0.2.25 gnn layer` (build/test a multi-head attention GNN layer) 22. **gnn search** — `npx -y ruvector@0.2.25 gnn search` (differentiable soft-attention search) 23. **gnn compress** — `npx -y ruvector@0.2.25 gnn compress` (5-level adaptive tensor compression)
Attention mechanisms
24. **attention list** — `npx -y ruvector@0.2.25 attention list` Lists ALL available mechanisms: DotProduct, MultiHead, Flash, Hyperbolic, Linear, MoE, GraphRoPe, EdgeFeatured, DualSpace, LocalGlobal. 25. **attention compute** — `npx -y ruvector@0.2.25 attention compute` 26. **attention benchmark** — `npx -y ruvector@0.2.25 attention benchmark` 27. **attention hyperbolic** — `npx -y ruvector@0.2.25 attention hyperbolic` (Poincare-ball geometry ops; the real hyperbolic surface in 0.2.25) 28. **attention info** — `npx -y ruvector@0.2.25 attention info`
Code intelligence (hooks)
29. **hooks init** — `npx -y ruvector@0.2.25 hooks init --pretrain --build-agents quality` 30. **hooks stats** — `npx -y ruvector@0.2.25 hooks stats` (Q-learning patterns, vector memories, trajectories) 31. **hooks route `<task>`** — `npx -y ruvector@0.2.25 hooks route "DESCRIPTION"` (positional) 32. **hooks route-enhanced `<task>`** — `npx -y ruvector@0.2.25 hooks route-enhanced "DESCRIPTION"` 33. **hooks suggest-context** — `npx -y ruvector@0.2.25 hooks suggest-context` 34. **hooks ast-analyze `<file>`** — `npx -y ruvector@0.2.25 hooks ast-analyze <file>` (positional) 35. **hooks ast-complexity `<files...>`** — `npx -y ruvector@0.2.25 hooks ast-complexity <files...>` 36. **hooks diff-analyze [commit]** — `npx -y ruvector@0.2.25 hooks diff-analyze HEAD` 37. **hooks diff-classify [commit]** — `npx -y ruvector@0.2.25 hooks diff-classify HEAD` 38. **hooks diff-similar** — `npx -y ruvector@0.2.25 hooks diff-similar` 39. **hooks coverage-route `<file>`** — `npx -y ruvector@0.2.25 hooks coverage-route <file>` 40. **hooks coverage-suggest `<files...>`** — `npx -y ruvector@0.2.25 hooks coverage-suggest <files...>` 41. **hooks graph-cluster `<files...>`** — `npx -y ruvector@0.2.25 hooks graph-cluster <files...>` (spectral/Louvain) 42. **hooks rag-context `<query>`** — `npx -y ruvector@0.2.25 hooks rag-context "QUERY"` 43. **hooks security-scan `<files...>`** — `npx -y ruvector@0.2.25 hooks security-scan <files...>` (run `hooks init` first) 44. **hooks remember `<content>`** — `npx -y ruvector@0.2.25 hooks remember "CONTENT"` 45. **hooks recall `<query>`** — `npx -y ruvector@0.2.25 hooks recall "QUERY"` 46. **hooks coedit-record / coedit-suggest** — record + retrieve files edited together. 47. **hooks error-record / error-suggest** — learn error→fix pairs and retrieve. 48. **hooks trajectory-begin / trajectory-step / trajectory-end** — record an execution trajectory. 49. **hooks pre-edit / post-edit / pre-command / post-command / session-start / session-end** — Claude Code hook lifecycle.
> **Known bugs in 0.2.25 hooks:** `force-learn` raises `intel.tick is not a function`; `graph-mincut` raises `Cannot read properties of undefined`; `git-churn` fails outside a git repo. Avoid these or run inside a git repo with seeded intelligence state.
Native + workers (background analysis)
50. **native list** — `npx -y ruvector@0.2.25 native list` (worker types: security, analysis, learning) 51. **native run `<type>`** — `npx -y ruvector@0.2.25 native run security` (or analysis|learning) 52. **native benchmark** — `npx -y ruvector@0.2.25 native benchmark` 53. **n
An agent meta-harness for Claude Code and Codex. Agent = Model + Harness. The model writes; the harness gives it tools, memory, loops, sandboxes, and controls so it can actually work.
Repo: ruvnet/ruflo
Other commands on claude-flow.
- /agent-capabilities
Matrix of agent capabilities and their specializations.
Open command - /agent-coordination
Coordination patterns for multi-agent collaboration.
Open command - /agent-spawning
Guide to spawning agents with Claude Code's Task tool.
Open command - /agent-types
Complete guide to all 54 available agent types in Claude Flow.
Open command - /COMMAND_COMPLIANCE_REPORT
Reviewed all command files in `.claude/commands/analysis/` directory to ensure proper usage of: - `mcp__claude-flow__*` tools (preferred) - `npx claude-flow` commands (as fallback) - No direct implementation calls
Open command - /bottleneck-detect
Analyze performance bottlenecks in swarm operations and suggest optimizations.
Open command

