rvf-v0.1.0
ruvnet/RuVectorrvf-v0.1.0Feb 16, 2026by github-actions[bot]
AI Summary
Initial release of RVF CLI - a standalone vector database CLI tool for creating, querying, and managing RVF stores with cross-platform binary support.
Key Highlights
- Standalone vector database CLI tool
- Cross-platform binaries: Linux x64/arm64, macOS x64/ARM64, Windows x64
- Simple CLI interface for database operations
- Supports configurable dimension and similarity metrics (cosine)
- Published as direct download binaries
New Features
- Create vector stores with specified dimensions
- Query vector stores
- Manage RVF stores
- Support for cosine similarity metric
Full Release Notes
## RVF CLI Release Standalone vector database CLI for creating, querying, and managing RVF stores. ### Download | Platform | Binary | |----------|--------| | Linux x64 | `rvf-linux-x64` | | Linux ARM64 | `rvf-linux-arm64` | | macOS x64 (Intel) | `rvf-darwin-x64` | | macOS ARM64 (Apple Silicon) | `rvf-darwin-arm64` | | Windows x64 | `rvf-windows-x64.exe` | ### Quick start ```bash # Download (macOS ARM64 example) curl -L -o rvf https://github.com/ruvnet/ruvector/releases/download/rvf-v0.1.0/rvf-darwin-arm64 chmod +x rvf # Create a store and query ./rvf create mydb.rvf --dimension 128 --metric cosine ./rvf status mydb.rvf ``` See the [CLI README](https://github.com/ruvnet/ruvector/tree/main/crates/rvf/rvf-cli) for full documentation.