npx claudepluginhub weaviate/agent-skills --plugin weaviateThis skill uses the workspace's default tool permissions.
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.pySearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
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