discovering-data
Installation
SKILL.md
Data Exploration
Discover what data exists for a concept or domain. Answer "What data do we have about X?"
Fast Table Validation
When you have multiple candidate tables, quickly validate before committing to complex queries.
Strategy: Progressive Complexity
Start with the simplest possible query, then add complexity only after each step succeeds:
Step 1: Does the data exist? → Simple LIMIT query, no JOINs
Step 2: How much data? → COUNT(*) with same filters
Step 3: What are the key IDs? → SELECT DISTINCT foreign_keys LIMIT 100
Step 4: Get related details → JOIN on the specific IDs from step 3