What problem does it solve? Moving or ingesting data from BigQuery or Google Cloud Storage often introduces hidden quality issues like malformed dates, garbage values, inconsistent units, and schema mismatches. 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 (with dynamic sampling for tables over 1M rows) before and after transformation to drive data-driven cleaning decisions. - SQL Transformation Generation: Produces cleansing SQL covering schema alignment, type conversion with SAFE.PARSE functions, JSON/ARRAY/STRUCT handling, and unit normalization. - Quality Review Protocol: Validates transformations by profiling a temporary sample output table and comparing column-level metrics against the source profile, iterating until anomalies are resolved. - 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 result with a post-transformation Dataplex scan. ## Quick Start Ask the agent to clean and load a BigQuery or GCS source into a destination table, for example: profile and clean the data in project.dataset.raw_orders and load it into project.dataset.clean_orders.