What problem does it solve? Moving or ingesting data from BigQuery or Google Cloud Storage often introduces hidden data quality issues like malformed dates, garbage values, and inconsistent units. This Skill automates profiling, cleansing, and verification so pipelines built on Dataform, dbt, or BigQuery start from trustworthy data. ## Core Features & Use Cases - Dataplex-Based Profiling: Runs automated data profile scans on source tables before and after transformation, with dynamic sampling for large tables and concurrent multi-table scans. - SQL Transformation Generation: Produces cleansing SQL covering schema alignment, type conversion with SAFE.PARSE functions, JSON parsing, array handling, and STRUCT field mapping. - Quality Review Protocol: Validates transformations by profiling a temporary sample output table and comparing results against the source profile to catch NULL increases or value shifts. - Use Case: When asked to copy a GCS dataset into a BigQuery destination table, the Skill profiles the source, generates cleaning SQL matched to the destination schema, and verifies the output with a post-transformation Dataplex scan. ## Quick Start Ask the assistant to clean and load a BigQuery or GCS source into a destination table, for example: profile and clean the data in project.dataset.source_table and load it into project.dataset.destination_table.