What problem does it solve? Running SQL against a data lake involves picking the right Athena workgroup, resolving fuzzy table references across federated catalogs, and avoiding costly or destructive queries. This Skill handles that entire workflow so queries execute safely with cost and scan visibility. ## Core Features & Use Cases - Workgroup-aware execution: Detects the IAM context (including SageMaker project roles), selects the correct Athena workgroup, and confirms the output S3 location before running anything. - Statement classification and safety: Classifies SQL as safe (SELECT/SHOW/DESCRIBE) or destructive (INSERT/DELETE/DROP/etc.) and requires explicit confirmation before destructive statements. - Federated catalog support: Queries default Glue catalogs, S3 Tables, and Redshift-federated sources with correct catalog-qualified addressing, plus table profiling with reusable Presto/Athena query patterns. - Use Case: Ask to "profile the sales table" and the Skill resolves the table, samples rows, runs null and cardinality analysis, and reports data scanned and cost. ## Quick Start Ask the assistant to run a SQL query or profile a table in Athena, for example: profile the orders table in my data lake.