
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@aigentic/diskann
Advanced tools
DiskANN/Vamana — SSD-friendly billion-scale approximate nearest neighbor search with product quantization
DiskANN/Vamana approximate nearest neighbor search — built in Rust, runs on all platforms.
Implements the Vamana graph algorithm from "DiskANN: Fast Accurate Billion-point Nearest Neighbor Search on a Single Node" (NeurIPS 2019).
npm install @aigentic/diskann
const { DiskAnn } = require('@aigentic/diskann');
const index = new DiskAnn({ dim: 128 });
// Insert vectors
for (let i = 0; i < 1000; i++) {
const vec = new Float32Array(128);
for (let d = 0; d < 128; d++) vec[d] = Math.random();
index.insert(`vec-${i}`, vec);
}
// Build Vamana graph
index.build();
// Search
const query = new Float32Array(128).fill(0.5);
const results = index.search(query, 10);
console.log(results); // [{ id: 'vec-42', distance: 0.123 }, ...]
// Persist
index.save('./my-index');
const loaded = DiskAnn.load('./my-index');
| Metric | Value |
|---|---|
| Search latency | 55µs (5K vectors, 128d, k=10) |
| Recall@10 | 0.998 |
| Build | ~6s for 5K vectors |
See full documentation at github.com/ruvnet/ruvector.
MIT
FAQs
DiskANN/Vamana — SSD-friendly billion-scale approximate nearest neighbor search with product quantization
We found that @aigentic/diskann demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.