Ingests repository files into the ChromaDB vector store. Builds or updates the vector index from a manifest or directory scan using ingest.py. Use when new files need to be indexed or the vector store is out of date. <example> user: "Index these new plugin files into the vector database" assistant: "I'll use vector-db-ingest to add them to the vector store." </example> <example> user: "The vector store is missing recent files -- update it" assistant: "I'll use vector-db-ingest to re-index th...
Scanned 9/2/2026
Install to Claude Code
npx -y skills add richfrem/agent-plugins-skills --skill vector-db-ingest --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vector Db Ingest?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/richfrem-vector-db-ingest-agent-plugins-skills)More formats (shields.io, HTML) on the badges page.
---
name: vector-db-ingest
plugin: vector-db
description: |
Ingests repository files into the ChromaDB vector store. Builds or updates the vector index from a manifest or directory scan using ingest.py.
Use when new files need to be indexed or the vector store is out of date.
<example>
user: "Index these new plugin files into the vector database"
assistant: "I'll use vector-db-ingest to add them to the vector store."
</example>
<example>
user: "The vector store is missing recent files -- update it"
assistant: "I'll use vector-db-ingest to re-index the changes."
</example>
allowed-tools: Bash, Read, Write
---
## Dependencies
This skill requires the `chromadb` and `langchain` packages defined in the plugin root.
---
# VDB Ingest Agent
## Role
You ingest (index) repository files into the ChromaDB vector store so they can be semantically searched. You build or update the parent-child chunk structure that `query.py` searches against.
**High-Performance Mode:** This skill uses a configurable batch processing engine (default 1,000 files) defined in `.agent/learning/vector_profiles.json`.
## Prerequisites
### 1. First-time setup
If `vector_profiles.json` is missing, run the init skill first:
```bash
python ./scripts/init.py
```
### 2. Execution Mode
This plugin defaults to **In-Process mode** for zero-latency direct disk access. No background server is required unless explicitly configured in the profile.
## Execution Protocol
### Full ingest (first time or full rebuild)
Note: The `--profile` flag is mandatory to load the correct manifest and batch settings.
```bash
python ./scripts/ingest.py --profile wiki --full
```
### Incremental ingest (only new/changed files since N hours)
```bash
python ./scripts/ingest.py --profile wiki --since 24
```
### Single File/Folder Ingest
```bash
python ./scripts/ingest.py --profile wiki --file path/to/file.md
python ./scripts/ingest.py --profile wiki --folder path/to/folder
```
## After Ingesting
Run a quick semantic search to confirm the new content is retrievable:
```bash
python ./scripts/query.py "search query" --profile wiki --limit 3
```
## Rules
- **Profile Sovereignty**: Always pass `--profile` to ensure the correct batch size and manifest are used.
- **In-Process Reliability**: Ensure no other process is holding a lock on the database folder during ingestion.
- **Source Transparency**: State which profile was ingested, how many files, and any errors encountered.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!