ruvector
Installation
SKILL.md
RuVector
High-performance vector database for Node.js with automatic native Rust NAPI / WASM fallback. Provides the unified CLI entry point for the entire RuVector ecosystem.
Quick Command Reference
| Task | Command |
|---|---|
| Show help | npx ruvector@latest --help |
| Create database | npx ruvector@latest create --dimensions 384 |
| Insert vectors | npx ruvector@latest insert --file vectors.json |
| Search | npx ruvector@latest search --query "hello world" --top-k 10 |
| Build HNSW index | npx ruvector@latest index build --ef-construction 200 |
| Benchmark | npx ruvector@latest bench --dimensions 384 --count 10000 |
| Show info | npx ruvector@latest info |
| Start server | npx ruvector@latest serve --port 8080 |