Agent Skills
› rmyndharis/antigravity-skills
› vector-index-tuning
vector-index-tuning
GitHub用于优化向量索引的生产性能,涵盖HNSW参数调优、量化策略选择及内存与延迟平衡。适用于需提升搜索速度、召回率或扩展至十亿级向量的场景。
Trigger Scenarios
调整HNSW参数
实施量化策略
优化内存使用
降低搜索延迟
平衡召回率与速度
扩展至数十亿向量
Install
npx skills add rmyndharis/antigravity-skills --skill vector-index-tuning -g -y
SKILL.md
Frontmatter
{
"name": "vector-index-tuning",
"description": "Optimize vector index performance for latency, recall, and memory. Use when tuning HNSW parameters, selecting quantization strategies, or scaling vector search infrastructure."
}
Vector Index Tuning
Guide to optimizing vector indexes for production performance.
Use this skill when
- Tuning HNSW parameters
- Implementing quantization
- Optimizing memory usage
- Reducing search latency
- Balancing recall vs speed
- Scaling to billions of vectors
Do not use this skill when
- You only need exact search on small datasets (use a flat index)
- You lack workload metrics or ground truth to validate recall
- You need end-to-end retrieval system design beyond index tuning
Instructions
- Gather workload targets (latency, recall, QPS), data size, and memory budget.
- Choose an index type and establish a baseline with default parameters.
- Benchmark parameter sweeps using real queries and track recall, latency, and memory.
- Validate changes on a staging dataset before rolling out to production.
Refer to resources/implementation-playbook.md for detailed patterns, checklists, and templates.
Safety
- Avoid reindexing in production without a rollback plan.
- Validate changes under realistic load before applying globally.
- Track recall regressions and revert if quality drops.
Resources
resources/implementation-playbook.mdfor detailed patterns, checklists, and templates.
Version History
- e63f7dd Current 2026-07-05 10:36


