Weaviate Explore Collection
Explore data within a Weaviate collection, providing statistical metrics for properties and a sample of objects.
Usage
/weaviate:explore "CollectionName"
/weaviate:explore "CollectionName" limit 5
Workflow
- Parse the collection name and optional limit arguments.
- Run the explore collection script:
uv run ${CLAUDE_PLUGIN_ROOT}/skills/weaviate/scripts/explore_collection.py "COLLECTION_NAME" --limit 5 - Display the results, including:
- Total object count
- Property metrics (count, min, max, mean, top occurrences, etc.)
- Sample objects in a table format
Examples
/weaviate:explore "Articles"
/weaviate:explore "Products" limit 10
Environment
Requires:
WEAVIATE_URL: Weaviate Cloud cluster URLWEAVIATE_API_KEY: API key for authentication