vector-database-configuration-validation

vector-database-configuration-validation is a skill for Claude Code from selvarajmurugesan90/ops-engineering-skills. It costs 124 tokens per session (3,836 once invoked), scanned A, original, Apache-2.0.

A pre-release check for a vector database index, which stores numeric representations of text or other data for similarity searches. It compares the index settings with the embedding model and measures whether real queries retrieve the right results.

In plain words
What is it for?
Checking vector dimensions and distance metrics, evaluating recall on labeled queries, and approving or stopping a production cutover for a retrieval-augmented generation system.
Why use it?
A wrong vector size or distance calculation can produce plausible but poor search results without an obvious error. The check helps decide whether retrieval is ready for production traffic.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex; mentions Gemini CLI.

Part of the ai-agent-skills plugin — 20 skills shipped together

Good fit Checking vector dimensions and distance metrics, evaluating recall on labeled queries, and approving or stopping a production cutover for a retrieval-augmented generation system.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/selvarajmurugesan90/ops-engineering-skills/vector-database-configuration-validation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add selvarajmurugesan90/ops-engineering-skills --skill vector-database-configuration-validation
Clone the repo
git clone --depth 1 https://github.com/selvarajmurugesan90/ops-engineering-skills

Made for: Claude Code.

Or install ai-agent-skills, the plugin that ships this one along with the rest of its 20 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vector-database-configuration-validation

README.md
[![agentmods](https://agentmods.dev/badge/skills/selvarajmurugesan90/ops-engineering-skills/vector-database-configuration-validation.svg)](https://agentmods.dev/skills/selvarajmurugesan90/ops-engineering-skills/vector-database-configuration-validation)
Your own site
<a href="https://agentmods.dev/skills/selvarajmurugesan90/ops-engineering-skills/vector-database-configuration-validation"><img src="https://agentmods.dev/badge/skills/selvarajmurugesan90/ops-engineering-skills/vector-database-configuration-validation.svg" alt="Measured on agentmods" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00124 $0.03836
Opus 5 $0.00062 $0.01918
Sonnet 5 $0.00025 $0.00767
Haiku 4.5 $0.00012 $0.00384

Measured 8d ago against content hash 3085071b4754, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

vector-database-configuration-validation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ai-agent/skills/vector-database-configuration-validation/SKILL.md · 328 lines

How it starts

The opening of the file, as written. The whole thing — 328 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vector Database Configuration Validation

Purpose

A vector index with the wrong dimension, distance metric, or HNSW parameter set for its embedding model doesn't fail loudly — it either rejects vectors with a dimension-mismatch error (the easy case) or, worse, silently accepts vectors and returns technically valid but degraded or nonsensical similarity results (the hard case, because nothing in the API response signals anything is wrong). This skill covers validating a vector index's configuration and actual query-performance behavior before it takes production traffic: confirming dimension and distance-metric agreement with the embedding model, running a labeled recall evaluation against real queries, and gating a cutover behind that evaluation rather than a visual "looks right" review. It assumes the index's operational tuning (sharding, replication, HNSW parameter selection) is handled in vector-database-operations-pinecone-weaviate-milvus and that vectors are arriving via vector-database-ingestion-pipeline-for-rag — this skill is specifically the pre-cutover validation gate sitting between those two.

When to use

  • Before cutting a RAG system's retrieval traffic over to a new or reconfigured vector index (new embedding model, new HNSW parameters, new sharding scheme, vendor migration).
  • Standing up a new index/collection and confirming its schema (dimension, distance metric, indexed metadata fields) actually matches what the embedding model and query patterns require.
  • Retrieval quality (recall, relevance) degraded after a re-index or an embedding-model change, and you need to confirm whether the index configuration itself is the cause.
  • Reviewing a Pinecone/Weaviate/Milvus index/collection definition in a PR before it's applied, to catch a dimension or metric mistake before it reaches production.
  • Migrating a corpus to a new vendor or a new index within the same vendor, and needing a go/no-go gate before the alias/pointer swap.

Read the full file on GitHub · 328 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 328 lines · 124 tokens per session scan A 3085071b4754

Subscribe to this mod's changes

vector-database-configuration-validation is a skill published in the GitHub repository selvarajmurugesan90/ops-engineering-skills (38 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 124 tokens to every session and 3,836 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.