Agent Skills to help developers build and use AI agents with Weaviate more effectively. Each skill is a folder containing instructions, scripts, and resources that agents like Claude Code, Cursor, GitHub Copilot, and others can discover to work more accurately and efficiently
Works with any agent that supports the Agent Skills format.
npx skills add weaviate/agent-skills/plugin marketplace add weaviate/agent-skills
/plugin install weaviate@weaviate-pluginsgit clone https://github.com/weaviate/agent-skills.git
cd agent-skills
claude --plugin-dir .New to Weaviate? Run the interactive onboarding to set up your environment variables, import your own or sample data, and explore the full functionality of the available skills/commands:
/weaviate:quickstartIt is recommended to create a free cluster in the weaviate console.
export WEAVIATE_URL="https://your-cluster.weaviate.cloud"
export WEAVIATE_API_KEY="your-api-key"For the complete env var list and header mapping, see:
Weaviate
Utility functions for the agent to directly interact with a Weaviate database.
-
Create Collections
-
Explore Collections (Aggregation, Metadata, Schema)
-
Query Collections (Keyword-, Vector-, Hybrid Search) (Support filters)
-
Import Data (supports multi-vector and PDF ingestion)
-
Query Agent
Cookbooks
Blueprints for complete end-to-end AI applications with state-of-the art guidelines for agentic infrastructure.
-
Multimodal PDF Ingestion
-
Data Explorer
-
Retrieval Augmented Generation (Basic, Advanced, Agentic)
-
Agents
-
Query Agent Chatbot
-
Frontend Interface (optional)
# Interactive onboarding
/weaviate:quickstart
# Ask a question and get an AI-generated answer with source citations
/weaviate:ask query "What are the benefits of vector databases?" collections "Documentation"
# Search collections and get raw results
/weaviate:query query "machine learning tutorials" collections "Articles,BlogPosts" limit 5
# Search with different search types
/weaviate:search query "product SKU-123" collection "Products" type "keyword"
/weaviate:search query "similar items" collection "Products" type "semantic"
/weaviate:search query "best laptops" collection "Products" type "hybrid" alpha "0.7"
# List collections or get a collection's schema
/weaviate:collections
/weaviate:collections name "Articles"
# Explore data in a collection
/weaviate:explore "Products" limit 10
# Fetch objects by ID or with filters
/weaviate:fetch collection "Articles" id "UUID"
/weaviate:fetch collection "Articles" filters '{"property": "category", "operator": "equal", "value": "Science"}'The skill is automatically discovered by compatible agents. Simply describe what you want:
- "Search my Weaviate documentation for information about HNSW indexing"
- "List all my Weaviate collections"
- "Find products similar to 'wireless headphones' in the Products collection"
- "Build a chatbot using the Query Agent"
- "Build a multimodal RAG app for my PDF documents"
- "Build an agentic RAG app"
- Python 3.11+
- uv (recommended) or pip
- A Weaviate Cloud instance
