Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Design the data quality checks for a table or pipeline across the standard dimensions. Use when asked to add data quality tests, define DQ checks, catch bad data before it hits dashboards, or set up monitoring for a dataset. Produces a checks plan across completeness, validity, uniqueness, freshness, consistency, and accuracy — each with the rule, severity, and where it runs (dbt test / Great Expectations / SQL assertion).
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 29% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 31% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -42% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 8% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 47% | 0% |
Bad data quietly poisons dashboards and models until someone notices the number is wrong. The fix is checks that fail loudly before that — across the standard DQ dimensions. This skill designs them for a specific table/pipeline: the exact rule per dimension, its severity (block vs. warn), and where it runs (dbt test, Great Expectations, or a SQL assertion), so quality is enforced, not hoped for.
Ask for these only if they aren't already provided:
[table]Checks organised by dimension — each with the rule, severity (🔴 block the pipeline / 🟡 warn), and where it runs:
| Dimension | Check | Rule | Severity | Implement as | |---|---|---|---|---| | Completeness | required fields non-null | not_null on cols] | 🔴 | dbt test | | Uniqueness | grain key unique | unique on key] | 🔴 | dbt test | | Validity | values in allowed set/range | accepted_values / range | 🟡 | GE / SQL | | Freshness | data is current | max(loaded_at) within SLA | 🔴 | dbt source freshness | | Consistency | cross-field / cross-table | e.g. totals reconcile, FK exists | 🟡 | SQL assertion | | Accuracy | matches a source of truth | reconcile vs. system-of-record | 🟡 | SQL assertion |
Notes:
Data-quality practice — the six DQ dimensions, dbt tests / Great Expectations / source-freshness, severity-tiered enforcement.
Other measured skills in the registry, with their headline benchmark lift.