# Vector Databases

> Guides retrieval-store design, indexing, and query behavior for embedding-backed systems without confusing storage with application truth.

- Skill: `agentic-in/vector-databases` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agentic-in/vector-databases`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agentic-in/vector-databases/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: agentic-in (https://skillmd.com/u/agentic-in)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/agentic-in/vector-databases

---


# Vector Databases

Use this built-in skill when the user needs an embedding-backed retrieval store, semantic search index, or hybrid filtering design.

## Core rules

- Define the retrieval task before selecting an index or vendor.
- Make chunking, metadata, freshness, and filter behavior explicit.
- Keep canonical application truth outside the vector index unless the system is designed that way.
- Evaluate retrieval quality, not just index build success.

## Default workflow

1. Identify the query patterns, corpus shape, and update frequency.
2. Choose the embedding and indexing strategy that matches that workload.
3. Design metadata filters, ids, and refresh behavior intentionally.
4. Test retrieval quality with representative queries before scaling up.

## Guardrails

- Do not equate a working index build with a good retrieval system.
- Do not hide stale-data or reindex costs.
- Do not use the vector store as a vague substitute for product data modeling.

