agency-data-vector-store-manager

Manages vector index optimization, RAG retrieval quality, and embeddings.

Updated Jul 14, 2026
One-click install
npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-data-vector-store-manager-ai-staffing-solution-consultants-llc
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-data-vector-store-manager
Source: https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system/tree/main/.agents/skills/vector-store-manager
Command: npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-data-vector-store-manager-ai-staffing-solution-consultants-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Retrieval-augmented generation pipelines degrade when vector indexes are poorly tuned, embeddings drift, or retrieval quality is unmonitored, causing agents to surface irrelevant context. This Skill provides guidance for maintaining and optimizing the vector store layer that powers RAG-based context retrieval. ## Core Features & Use Cases - Vector Index Optimization: Tune index parameters and structure to keep similarity search accurate and fast as the corpus grows. - RAG Retrieval Quality Management: Evaluate and improve the relevance of retrieved documents so downstream planning receives useful context. - Embeddings Management: Handle embedding generation, consistency, and refresh strategies for stored documents. - Use Case: In an incident-response agent that searches past runbooks via RAG, use this Skill to diagnose why retrieval returns stale incidents and re-optimize the index and embeddings. ## Quick Start Ask the agent to review the current vector store configuration and improve retrieval quality for the RAG corpus.

Frequently Asked Questions about agency-data-vector-store-manager

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I improve RAG retrieval quality?▼

Improving RAG retrieval quality involves tuning the vector index, ensuring embeddings are consistent and up to date, and evaluating whether retrieved documents are relevant to queries. This Skill focuses on exactly those three areas: index optimization, retrieval quality, and embeddings management.

How to optimize a vector index for similarity search?▼

Vector index optimization means adjusting index structure and parameters so similarity search stays accurate and performant as the corpus grows. The Skill guides reviewing the current index configuration and applying optimizations appropriate to the stored embeddings.

Why does my RAG system return irrelevant documents?▼

Irrelevant RAG results usually come from stale or inconsistent embeddings, a poorly tuned index, or a mismatch between query and document embedding strategies. Auditing embedding freshness and index configuration typically identifies the cause.

When should embeddings be regenerated in a vector store?▼

Embeddings should be regenerated when the embedding model changes, when source documents are updated, or when retrieval quality degrades over time. Keeping embeddings consistent across the corpus is essential for reliable similarity search.

What are the limitations of vector-based retrieval?▼

Vector retrieval can miss exact-keyword matches and struggles with very domain-specific terminology if embeddings were not trained on similar data. In those cases, hybrid approaches combining keyword search with vector similarity may be more appropriate.