Help us improve
Share bugs, ideas, or general feedback.
From weaviate
Search, query, and manage Weaviate vector database collections using semantic, hybrid, and keyword search, natural language queries with AI answers, data exploration, filtered fetching, and imports from PDF/CSV/JSON/JSONL files.
npx claudepluginhub weaviate/agent-skills --plugin weaviateHow this skill is triggered — by the user, by Claude, or both
Slash command
/weaviate:weaviateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides comprehensive access to Weaviate vector databases including search operations, natural language queries, schema inspection, data exploration, filtered fetching, collection creation, and data imports.
references/ask.mdreferences/create_collection.mdreferences/environment_requirements.mdreferences/example_data.mdreferences/explore_collection.mdreferences/fetch_filter.mdreferences/get_collection.mdreferences/hybrid_search.mdreferences/import_data.mdreferences/keyword_search.mdreferences/list_collections.mdreferences/query_search.mdreferences/semantic_search.mdscripts/ask.pyscripts/create_collection.pyscripts/example_data.pyscripts/explore_collection.pyscripts/fetch_filter.pyscripts/get_collection.pyscripts/hybrid_search.pyGuides MongoDB Atlas Search implementation for full-text (autocomplete, fuzzy, faceted), vector (semantic embeddings, RAG), and hybrid queries with index creation, optimization, and troubleshooting.
Guides MongoDB users through implementing Atlas Search, Vector Search, and Hybrid Search. Covers index creation, query construction, and performance optimization for text, semantic, and combined search.
Provides patterns and Python templates for similarity search with vector databases, including metrics, indexes, and Pinecone implementation. Use for semantic search, RAG, recommendations, and scaling.
Share bugs, ideas, or general feedback.
This skill provides comprehensive access to Weaviate vector databases including search operations, natural language queries, schema inspection, data exploration, filtered fetching, collection creation, and data imports.
If the user does not have an instance yet, direct them to the cloud console to register and create a free sandbox. Create a Weaviate instance via Weaviate Cloud.
Required:
WEAVIATE_URL - Your Weaviate Cloud cluster URLWEAVIATE_API_KEY - Your Weaviate API keyExternal Provider Keys (auto-detected): Set only the keys your collections use, refer to Environment Requirements for more information.
text2vec_weaviate is used).Start by listing collections if you don't know what's available:
uv run scripts/list_collections.py
Ask the user if they want to create example data if nothing is available and the user requests it. Otherwise continue.
uv run scripts/example_data.py
Get collection details to understand the schema:
uv run scripts/get_collection.py --name "COLLECTION_NAME"
Explore collection data to see values and statistics:
uv run scripts/explore_collection.py "COLLECTION_NAME"
Create a collection if importing a new CSV, JSON, or JSONL file — the collection must exist before importing:
uv run scripts/create_collection.py CollectionName \
--properties '[{"name": "title", "data_type": "text"}, {"name": "body", "data_type": "text"}]'
Do not specify a vectorizer unless the user explicitly requests one.
Import data into an existing collection:
uv run scripts/import.py "data.csv" --collection "CollectionName"
For PDF imports, the collection is created automatically — skip step 5.
Choose the right search type:
ask.pyquery_search.pyhybrid_search.py (default)semantic_search.pykeyword_search.pyAll scripts support:
--json flag)Common errors:
WEAVIATE_URL not set → Set the environment variableCollection not found → Use list_collections.py to see available collectionsAuthentication error → Check API keys for both Weaviate and vectorizer providers