Agent-skills motherduck-query
Execute DuckDB SQL queries against MotherDuck databases. Use when running analytics, aggregations, transformations, or any SQL operation. Covers query best practices, CTEs, window functions, QUALIFY, and performance optimization.
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-query" ~/.claude/skills/motherduckdb-agent-skills-motherduck-query && rm -rf "$T"
manifest:
plugins/motherduck-skills-claude/skills/motherduck-query/SKILL.mdsource content
Query MotherDuck
Use this skill when executing SQL queries for analytics, aggregations, transformations, or data exploration against MotherDuck databases.
Prerequisites
- MotherDuck connection established via
motherduck-connect - Target database and tables identified via
motherduck-explore
Default Posture
- Write DuckDB SQL, not PostgreSQL SQL, even when using the PG endpoint.
- Always use fully qualified
names."database"."schema"."table" - Filter early, aggregate early, and prefer serving tables or summaries for repeated reads.
- Keep SQL obvious, multi-line, and explicit about grain, filters, and output shape.
- Treat DDL, DML,
,ATTACH
, and lifecycle commands such asDETACH
as writes. Use MCPSHUTDOWN
only when the user explicitly asks for the change and confirms it.query_rw - Tag long-lived integrations with
when the connection path supports it.custom_user_agent
Workflow
- Confirm the actual tables, columns, and grain before writing SQL.
- Write the query in SQL first, then wrap it in Python or TypeScript only if needed.
- Use CTEs and DuckDB-native patterns such as
,GROUP BY ALL
, andQUALIFY
.arg_max - Check the plan and shape for pushdown, unnecessary sorts, or repeated raw rescans.
- Materialize expensive repeated queries into serving tables or light views when warranted.
Open Next
for DuckDB query patterns, exploration SQL, performance rules, common analytical shapes, and common mistakesreferences/QUERY_PLAYBOOK.md
Related Skills
for session setupmotherduck-connect
for syntax and function referencemotherduck-duckdb-sql
for understanding the source schema before writing queriesmotherduck-explore