Agent-skills motherduck-explore
Discover and explore databases, tables, columns, and data shares in MotherDuck. Use when you need to understand what data is available, preview table contents, or search the data catalog.
install
source · Clone the upstream repo
git clone https://github.com/motherduckdb/agent-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/motherduckdb/agent-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/motherduck-skills-claude/skills/motherduck-explore" ~/.claude/skills/motherduckdb-agent-skills-motherduck-explore && rm -rf "$T"
manifest:
plugins/motherduck-skills-claude/skills/motherduck-explore/SKILL.mdsource content
Explore MotherDuck Data
Use this skill when you need to discover what databases, tables, and columns exist in a MotherDuck account; preview and sample data; understand schemas and data types; find shared databases; or search the data catalog.
Prerequisites
- Establish a MotherDuck connection first via
.motherduck-connect
Default Posture
- Explore top-down: databases, then tables/views, then columns, then statistics, then sample rows.
- Use fully qualified table names once more than one database is attached.
- Check shared databases before concluding that data is unavailable.
- Use MCP exploration tools when available because they return structured results faster than ad hoc SQL.
Workflow
- List databases in scope.
- List tables and views in the target database.
- Inspect columns, types, nullability, and comments before writing queries.
- Run
on important tables to understand ranges, cardinality, and null rates.SUMMARIZE - Preview rows and only then move into analytical SQL or modeling work.
Open Next
for the full SQL workflow, share discovery patterns, MCP tool guidance, and common exploration mistakesreferences/EXPLORATION_PLAYBOOK.md
Related Skills
for session setup and authenticationmotherduck-connect
for analytical SQL after the schema is understoodmotherduck-query
for DuckDB syntax patterns during explorationmotherduck-duckdb-sql
for creating and consuming shares once shared datasets become part of the workflowmotherduck-share-data