Data Quality Framework — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Data Quality Framework (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Build systematic data quality checks and monitoring so problems are caught before they reach consumers.
dbt provides generic tests in schema YAML:
models:
- name: orders
columns:
- name: order_id
tests:
- unique
- not_null
- name: status
tests:
- accepted_values:
values: ['pending', 'shipped', 'delivered', 'cancelled']
- name: customer_id
tests:
- relationships:
to: ref('customers')
field: customer_idAdd singular tests (SQL that returns failing rows) for business rules:
-- tests/assert_positive_amount.sql
select order_id from {{ ref('orders') }} where amount <= 0dbt_utils and dbt_expectations add tests like expect_column_values_to_be_between, freshness checks, and row count anomalies.
sources:
- name: raw
tables:
- name: events
freshness:
warn_after: {count: 6, period: hour}
error_after: {count: 12, period: hour}
loaded_at_field: ingested_atBeyond static thresholds, track metrics over time:
Alert when a metric deviates more than a few standard deviations from its recent history.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.