What problem does it solve? Setting up retrieval-augmented generation from scratch requires wiring together a vector database, embedding models, ingestion scripts, metadata rules, and MCP-facing HTTP servers. This Skill walks through the entire bootstrap for a brand-new project so documents under docs/ and .github/context/ become embedded in Qdrant and queryable via query_docs and read_docs. ## Core Features & Use Cases - Template-driven setup: Copies canonical rag-config.yaml, metadata-rules.yaml, multilingual-glossary.yaml, and ingest/server scripts from a reference implementation. - Dual-server deployment: Provides a docker-compose stanza running Qdrant plus Python and .NET RAG HTTP servers on separate ports and collections. - Configuration guidance: Covers embedder model selection (default MiniLM 384-dim), metadata-rules auditing per folder layout, and glossary scoping by project language. - Use Case: A team splitting a service out of a monorepo uses this Skill to stand up its own RAG stack, ingest 300+ documentation chunks, and smoke-test queries through MCP within one session. ## Quick Start Ask the assistant to set up RAG for a new project named AcmeApp with the default MiniLM embedder and both Python and .NET servers.