
Security News
npm Tooling Bug Incorrectly Marks One-Character Packages as Security Holders
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.
@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
The npm package @aigentic/diskann receives a total of 12 weekly downloads. As such, @aigentic/diskann popularity was classified as not popular.
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
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.