Implement RAG systems using Weaviate vector database. Use when building semantic search, document retrieval, or knowledge base systems.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill weaviate-rag --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Weaviate Rag?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-weaviate-rag)More formats (shields.io, HTML) on the badges page.
---
name: weaviate-rag
description: Implement RAG systems using Weaviate vector database. Use when building semantic search, document retrieval, or knowledge base systems.
allowed-tools: Read, Write, Grep, Glob
---
# Weaviate RAG Configuration Skill
Configure MoodleNRW RAG system with Weaviate vector store.
## Trigger
- RAG system setup or troubleshooting
- Vector store configuration
- Document embedding requests
## Running Services
- **Weaviate HTTP**: `localhost:8095`
- **Weaviate gRPC**: `localhost:50055`
- **Chainlit UI**: `localhost:8000`
## Server Paths
- **RAG System**: `/opt/cloodle/tools/ai/multi_agent_rag_system/`
- **Chatbot**: `/opt/cloodle/tools/ai/moodle-chatbot/`
## Weaviate Client Configuration
```python
import weaviate
client = weaviate.Client(
url="http://localhost:8095",
additional_headers={
"X-OpenAI-Api-Key": os.getenv("OPENAI_API_KEY", "")
}
)
```
## Docker Commands
```bash
# Start Weaviate
cd /opt/cloodle/tools/ai/multi_agent_rag_system
docker-compose up -d
# Check status
docker ps | grep weaviate
# View logs
docker logs multi_agent_rag_system_weaviate_1
```
## Schema Creation
```python
schema = {
"class": "MoodleDocument",
"vectorizer": "text2vec-transformers",
"properties": [
{"name": "content", "dataType": ["text"]},
{"name": "source", "dataType": ["string"]},
{"name": "course_id", "dataType": ["int"]}
]
}
client.schema.create_class(schema)
```
## Embedding Models (Local)
| Model | Dimensions | Best For |
|-------|------------|----------|
| nomic-embed-text | 768 | General purpose |
| bge-m3 | 1024 | Multilingual |
| mxbai-embed-large | 1024 | High quality |
## Start Chainlit
```bash
cd /opt/cloodle/tools/ai/multi_agent_rag_system
source .venv/bin/activate
chainlit run app.py
```
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!