From ruflo-ruvector
Generate embeddings via npx ruvector (ONNX all-MiniLM-L6-v2, 384-dim), normalize, and store in HNSW index
How this skill is triggered — by the user, by Claude, or both
Slash command
/ruflo-ruvector:vector-embed <text-or-file><text-or-file>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate and store vector embeddings using the `ruvector` npm package.
Generate and store vector embeddings using the ruvector npm package.
Use this skill to embed text, code, or documents into 384-dimensional vectors for semantic search, similarity comparison, or clustering. ruvector uses ONNX all-MiniLM-L6-v2 with HNSW indexing (52,000+ inserts/sec, ~0.045ms search).
npm ls ruvector 2>/dev/null || npm install ruvector
npx ruvector embed "your text here"npx ruvector embed --file src/module.tsnpx ruvector embed --batch --glob "src/**/*.ts"--norm l1, --norm minmax, --norm zscoremcp__claude-flow__memory_store({ key: "embed-SOURCE", value: "VECTOR_METADATA", namespace: "vector-patterns" })If ruvector MCP server is connected (claude mcp add ruvector -- npx ruvector mcp start):
hooks_rag_context — semantic context retrievalbrain_search — shared brain knowledge searchnpx ruvector embed --batch --glob "src/**/*.ts"
Reports total vectors inserted and index growth.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
npx claudepluginhub abdhenni/ruflo --plugin ruflo-ruvector