# 418 Explore Cee87e25

> Explore a Weaviate collection's data, including property metrics and sample objects

- Skill: `tools-only/418-explore-cee87e25` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/418-explore-cee87e25`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/418-explore-cee87e25/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/418-explore-cee87e25

---


# 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

1. Parse the collection name and optional limit arguments.
2. Run the explore collection script:
   ```bash
   uv run ${CLAUDE_PLUGIN_ROOT}/skills/weaviate/scripts/explore_collection.py "COLLECTION_NAME" --limit 5
   ```
3. 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 URL
- `WEAVIATE_API_KEY`: API key for authentication

