What problem does it solve? Analyzing data files often requires writing boilerplate code to load files, inspect schemas, and debug SQL errors. This Skill registers CSV, JSON, Parquet, and Excel files as DuckDB tables, generates descriptive statistics, and executes SQL queries with automatic error correction and retry. ## Core Features & Use Cases - Data Exploration: Describe mode reports row counts, column types, numeric/categorical/date statistics, and missing-value quality checks. - SQL Query with Auto-Correction: Executes natural-language-derived SQL with up to 3 retries, automatically fixing syntax errors, quoting Chinese column names, and matching misspelled columns via edit distance. - Sampling, Export & Persistence: Validate queries on data samples, export results to CSV/Excel/JSON/Parquet, or persist tables into a DuckDB database file for later joins. - Use Case: Given a sales_data.csv file, first run describe mode to learn the schema, then query revenue by category and export the aggregated result to an Excel report. ## Quick Start Ask the agent to analyze the attached sales CSV file with DuckDB, first describing its structure and then querying total revenue grouped by product category.