Agent Skills for local RAG (Retrieval-Augmented Generation) using memvid-sdk.
These skills follow the Agent Skills specification so they can be used by any skills-compatible agent, including Claude Code and Codex CLI.
Install via Claude Code plugin marketplace:
/plugin marketplace add fa-ina-tic/memvid-rag
/plugin install memvid-rag@memvid-rag-skills
Place the contents of this repository in a /.claude folder at your project root. See the Claude Skills documentation for details.
Copy the skills/ directory to ~/.codex/skills following the Agent Skills specification.
pip install memvid-sdkCOHERE_API_KEY - Cohere (default)OPENAI_API_KEY - OpenAIVOYAGE_API_KEY - Voyage AINVIDIA_API_KEY - NVIDIAThis plugin enables semantic search over PDF documents:
| Command | Description |
|---|---|
/memvid-rag:create | Create a new knowledge.mv2 index file |
/memvid-rag:index | Index PDF documents with vector embeddings |
/memvid-rag:search | Search indexed documents semantically |
/memvid-rag:status | Show RAG system statistics |
Initialize a new knowledge base:
/memvid-rag:create
Add PDF documents to the knowledge base:
/memvid-rag:index ./documents/research-paper.pdf
Query your indexed documents:
/memvid-rag:search What are the key findings?
/memvid-rag:search How does the algorithm work? --k=10 --mode=sem
--k=<number> - Maximum results (default: 5)--mode=<lex|sem|hybrid> - Search mode (default: hybrid)--snippet_chars=<number> - Max characters per snippet (default: 240)--min_relevancy=<float> - Minimum relevancy threshold--adaptive=<true|false> - Enable adaptive result countAll indexed data is stored locally in a knowledge.mv2 file in your working directory.
MIT
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub fa-ina-tic/memvid-rag --plugin memvid-ragLightRAG-based PDF document indexing and semantic search for research workflows
OpenRAG agent skills: guided installation and SDK integration helpers.
Search your local documents with natural language. Index folders of PDFs, Word docs, markdown, and more — then ask questions in English or German and get answers with source citations.
Pinecone vector database integration. Streamline your Pinecone development with powerful tools for managing vector indexes, querying data, and rapid prototyping. Use slash commands like /quickstart to generate AGENTS.md files and initialize Python projects and /query to quickly explore indexes. Access the Pinecone MCP server for creating, describing, upserting and querying indexes with Claude. Perfect for developers building semantic search, RAG applications, recommendation systems, and other vector-based applications with Pinecone.
Google File Search API powered RAG pipeline - managed retrieval-augmented generation with document processing
Local RAG system with embedded Multi-Agent Framework for Claude Code plugin