Advanced Retrieval-Augmented Generation marketplace for Claude Code. Features local vector search with FAISS, semantic embeddings, multi-agent orchestration (7 specialized agents), parallel RAG+MAF execution, HyDE optimization, and comprehensive monitoring. Enhances Claude with knowledge retrieval, intelligent query routing, and production-ready observability.
npx claudepluginhub itmediatech/rag-cliLocal RAG system with embedded Multi-Agent Framework for Claude Code plugin
No description available.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
Just a heads-up, turns out Anthropic / Claude does not like it when you avoid token usage cost by routing traffic to the CLI tool from them. This shadow banned me from their platform when I was on their $200 a month plan. They refuse to respond after months of submitting an appeal, etc, and no project I worked on violated any aspect of their Terms. After research, I see many people have been banned on similar cases. You have been warned.
Local Retrieval-Augmented Generation system for Claude Code with Multi-Agent Framework integration.
A production-ready Claude Code plugin that combines ChromaDB vector embeddings with intelligent document retrieval and Multi-Agent Framework (MAF) orchestration for context-aware development assistance.
Current Version: 2.0.0 Status: Production Ready (with known limitations documented in KNOWN_ISSUES.md)
Key Features:
Alternative Project: For a standalone CLI experience with extended features, see dt-cli. Both projects are actively maintained and can be used together.
RAG-CLI is a production-ready local Retrieval-Augmented Generation system that enhances your development workflow by providing instant access to your project documentation, codebase context, and external resources. It works seamlessly with Claude Code as a native plugin, eliminating the need for external API calls while processing documents locally with enterprise-grade security and performance.
RAG-CLI runs efficiently on:
The easiest way to get RAG-CLI as a Claude Code plugin:
# In Claude Code terminal
/plugin marketplace add https://github.com/ItMeDiaTech/rag-cli.git
/plugin install rag-cli
Then restart Claude Code. The plugin will activate automatically with zero configuration.
Benefits:
/plugin update rag-cliFor development, testing, or custom configuration:
# Clone the repository
git clone https://github.com/ItMeDiaTech/rag-cli.git
cd rag-cli
# Create virtual environment (recommended)
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Verify installation
python -c "from rag_cli.core import embeddings; print('Installation successful!')"
For contributing to RAG-CLI:
# Clone and install in editable mode
git clone https://github.com/ItMeDiaTech/rag-cli.git
cd rag-cli
# Create virtual environment
python -m venv venv
source venv/bin/activate
# Install with development dependencies
pip install -e ".[dev]"