Data Scientist (High-Performance DuckDB/Polars Analysis)
A skill that analyzes CSV, Parquet, and JSON data by intelligently routing each operation to either DuckDB or Polars for maximum speed.
Data & AnalyticsIntermediate★ 67,531⑂ 5,507AI score 9/10Last updated: Aug 9, 2026
What it does
- Detects requests like "analyze this file", "total by category", or "trend for the last 30 days" and switches into data-analysis mode.
- Applies an 11-step decision tree: Polars for filtering, sorting, window functions and transforms; DuckDB for joins, aggregations, and heavy SQL.
- Builds hybrid pipelines with zero-copy Arrow handoffs (
.pl()) between DuckDB and Polars. - Runs everything through
uv run --with numpy --with duckdb --with polars --with pyarrow, and never uses pandas. - Ships a
scripts/quick-query.pyCLI (SQL, filters, schema/stat describe) plus uv bootstrap scripts for macOS/Linux/Windows.
Who it's for
- Data analysts and engineers who regularly handle large CSV/Parquet files.
- Anyone processing datasets bigger than available RAM via streaming or out-of-core execution.
- Teams migrating off pandas toward the modern Polars + DuckDB stack.
Example uses
- Point it at
sales.parquetand ask for "revenue by category with a histogram" → DuckDB aggregation plus a matplotlib chart. - "Join
orders.csvwithcustomers.csvon customer_id, then keep rows above 100" → DuckDB join followed by a Polars filter. - Run
uv run scripts/quick-query.py data.parquet --describefor instant schema and summary statistics.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/shared-skills/skills/data-scientist/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/shared-skills/skills/data-scientist folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/data-scientist/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/packages/shared-skills/skills/data-scientist ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the repo:
git clone https://github.com/code-yeongyu/oh-my-openagent.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r oh-my-openagent/packages/shared-skills/skills/data-scientist ~/.claude/skills/ - If
uvisn't installed, runbash ~/.claude/skills/data-scientist/scripts/setup-uv.sh(on native Windows:powershell -ExecutionPolicy Bypass -File scripts/setup-uv.ps1). - Verify with
uv --version. - Restart Claude Code, then ask something like "analyze this data" with a CSV/Parquet path to trigger the skill automatically.
View source on GitHub ↗License: NOASSERTION