duckdb-local-analytics-and-dev

duckdb-local-analytics-and-dev is a skill for Claude Code, Codex from vaquarkhan/data-engineering-agent-skills. It costs 47 tokens per session (1,100 once invoked), scanned A, original, MIT.

A guide to using DuckDB for local data analysis and development. DuckDB is a small database that runs inside an application and can query data files without a separate server.

In plain words
What is it for?
Use it to prototype data models and transformations, reproduce data problems with sample data, validate dbt models, run local analytical queries, and build lightweight validators or demos.
Why use it?
It supports quick, repeatable experiments and troubleshooting without requiring a full data warehouse, while making clear that local prototypes are not production infrastructure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to prototype data models and transformations, reproduce data problems with sample data, validate dbt models, run local analytical queries, and build lightweight validators or demos.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add vaquarkhan/data-engineering-agent-skills --skill duckdb-local-analytics-and-dev
Clone the repo
git clone --depth 1 https://github.com/vaquarkhan/data-engineering-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for duckdb-local-analytics-and-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev/github.svg)](https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev)
Your own site
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for duckdb-local-analytics-and-dev

Your own site · 80×15
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/duckdb-local-analytics-and-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,100 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.01100
Opus 5 $0.00023 $0.00550
Sonnet 5 $0.00009 $0.00220
Haiku 4.5 $0.00005 $0.00110

Measured 9d ago against content hash 993aa550454e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

duckdb-local-analytics-and-dev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/duckdb-local-analytics-and-dev/SKILL.md · 95 lines

How it starts

The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DuckDB Local Analytics And Dev

Overview

Use this skill when DuckDB is the fastest path to local analytical iteration. It helps agents build reproducible local workflows that accelerate development without confusing prototype convenience for production architecture.

When to Use

  • prototyping data models and transformations locally before deploying to a warehouse
  • reproducing production data issues with sample datasets
  • running analytical queries during development without remote infrastructure
  • building lightweight CLI tools, validators, or test harnesses
  • validating dbt models locally with dbt-duckdb adapter
  • creating proof-of-concept demonstrations with embedded analytics

Do not use this when the workload requires production durability, concurrent access, or distributed processing. DuckDB is a development and prototyping accelerator, not a production warehouse replacement.

Workflow

  1. Define the purpose and scope of the local workflow. Include:

    • what question or validation is this workflow answering?
    • what sample data is needed and where does it come from?
    • is this a one-time investigation or a repeatable development workflow?
    • what is the promotion path to production if the prototype succeeds?
  2. Set up reproducible data inputs.

    • use sample files (CSV, Parquet, JSON) checked into the repository or downloaded by script
    • document how sample data was generated or extracted
    • keep sample sizes representative but small enough for fast iteration
    • use DuckDB's ability to read Parquet, CSV, and JSON directly without import steps
    • for sensitive data: use anonymized or synthetic samples only
  3. Write transformations that map cleanly to production equivalents.

    • use standard SQL that translates to the target warehouse dialect
    • avoid DuckDB-specific functions unless the workflow stays local permanently
    • structure queries in the same layered pattern (staging → intermediate → marts) as production
    • when using dbt-duckdb: use the same model structure and tests as the production adapter
    • document which DuckDB-specific features would need replacement in production

Read the full file on GitHub · 95 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 95 lines · 47 tokens per session scan A 993aa550454e

Subscribe to this mod's changes

duckdb-local-analytics-and-dev is a skill published in the GitHub repository vaquarkhan/data-engineering-agent-skills (43 stars, last pushed 2mo ago), licensed MIT. It adds 47 tokens to every session and 1,100 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.