What problem does it solve?
This Skill enables comprehensive local data exploration using DuckDB, including automated data profiling, complex JSON handling, and interactive HTML reports for CSV, Parquet, and JSON data.
Core Features & Use Cases
- Data Profiling and Quality Analysis: Profile data and generate quality reports with null analysis, type validation, and sample data
- Complex JSON Handling: Deep JSON operations and transformations using DuckDB
- Interactive HTML Reports: Generate interactive HTML reports for data exploration
- DuckDB Query Patterns & References: Learn common patterns in
duckdb SQL and JSON functions
Quick Start
- Profile a dataset: python3 scripts/data_profiler.py data.csv --output profile.json
- Transform JSON data: python3 scripts/json_transformer.py transform "*.json" "SELECT json_extract(data, '$.user.name') as name FROM json_data" --output transformed.parquet
- Generate HTML report: python3 scripts/html_report_generator.py profile.json report.html
- Open report: open report.html