Weaviate plugins for Claude Code
npx claudepluginhub weaviate/agent-skillsWeaviate plugin for Claude Coding
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework

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-plugins
git 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:quickstart
It 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:
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
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)
The scripts and cookbooks in this agent skills repository rely on some widely adopted third-party packages. However, we are not responsible for the security of any third-party components, as new vulnerabilities may arise at any time. The user should run their own security scans before executing any code and review packages flagged for known issues.
# 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: