A Claude Code plugin that enables powerful data transformation and export using DuckDB SQL.
FAQ
data-wrangler is a Claude Code plugin with 1 hand-picked skill for data work, indexed on Flowy. Install it with the command on its page. It includes data-wrangler. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add richard-gyiko/data-wrangler-plugin> /plugin install data-wrangler@data-wrangler-marketplace
Repo: richard-gyiko/data-wrangler-plugin
A Claude Code plugin that enables powerful data transformation and export using DuckDB SQL.
Add the marketplace and install:
/plugin marketplace add richard-gyiko/data-wrangler-plugin
/plugin install data-wrangler@data-wrangler-marketplace
/plugin marketplace add ./path/to/data-wrangler-plugin
/plugin install data-wrangler@data-wrangler-marketplace
Once installed, Claude will automatically use this skill when you ask data transformation questions.
Simple file query:
"What are the top 10 products by revenue in sales.csv?"
Join multiple files:
"Join orders.parquet with customers.csv and show total orders per customer"
Export to Parquet:
"Filter active users from users.csv and save as users_active.parquet"
Create partitioned dataset:
"Convert events.json to Parquet partitioned by year and month"
Store database and cloud credentials securely using a YAML secrets file with environment variable substitution.
Create secrets.yaml:
secrets:
my_postgres:
type: postgres
host: db.example.com
user: analyst
password: "${PGPASSWORD}" # Uses environment variable
database: analytics
Supported secret types:
See SECRETS.md for full configuration options.
The skill uses DuckDB, an embedded analytical database that excels at:
uv package manager (for running the script)Dependencies are automatically installed via the inline script metadata:
duckdb>=1.4.3polars[pyarrow]>=1.36.1data-wrangler-plugin/
โโโ .claude-plugin/
โ โโโ plugin.json # Plugin manifest
โ โโโ marketplace.json # Marketplace definition
โโโ skills/
โ โโโ data-wrangler/
โ โโโ SKILL.md # Skill instructions for Claude
โ โโโ SECRETS.md # Secrets management docs
โ โโโ TRANSFORMS.md # Advanced SQL patterns
โ โโโ scripts/
โ โโโ query_duckdb.py # DuckDB query engine
โโโ tests/ # Test suite
โโโ README.md
MIT License - see LICENSE file for details.
Contributions welcome! Please open an issue or pull request.
.claude-plugin/
marketplace.json
plugin.json
.gitignore
AGENTS.md
docs/
claude_skills_best_practices.md
LICENSE
README.md
skills/
data-wrangler/
examples/
secrets.yaml
scripts/
query_duckdb.py
SECRETS.md
SKILL.md
TRANSFORMS.md
tests/
test_explore.py
test_query.py
test_secrets.py
test_write.pyยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic