What problem does it solve? Answering business questions from companyRAG datasets normally requires knowing table structures and writing correct SQL by hand. This Skill guides the agent to explore schemas first and then run accurate DuckDB SELECT queries, so answers come from real data instead of guesses. ## Core Features & Use Cases - Schema Exploration: Lists collections and tables, inspects column names, types, and sample rows with list_datasets, get_schema, describe_table, and get_sample before writing any query. - SQL Analysis: Executes DuckDB SELECT queries via execute_sql, supporting joins across multiple tables, window functions, DATE_TRUNC, and PIVOT/UNPIVOT. - Data Cleaning: Persists cleanup queries as reusable _clean views with save_transform when raw data has issues like currency symbols in numeric columns. - Use Case: Ask "What was the monthly revenue per customer segment in 2024?" and the agent inspects the dataset schema, writes the correct join and aggregation, and returns a Markdown table of verified results. ## Quick Start Ask the agent to analyze a table in your companyRAG dataset collection, for example to show total revenue per month from the 2024 orders table.