data-quality-gate

A data-pipeline validation step that checks incoming or transformed data for problems such as missing values, invalid ranges, broken references, or unexpected row counts. It can warn and continue or stop the pipeline.

In plain words
What is it for?
Use it when onboarding a dataset, investigating pipeline failures, or adding a check for a particular column or table relationship.
Why use it?
It catches bad data before it reaches later processing or reports. This reduces the chance that incomplete or invalid records spread through the system unnoticed.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/zakelfassi/skills-driven-development/data-quality-gate
Any agent
npx skills add zakelfassi/skills-driven-development --skill data-quality-gate
Clone the repo
git clone --depth 1 https://github.com/zakelfassi/skills-driven-development

Made for: Claude Code, Codex.

Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,201 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00067 $0.01201
Opus 5 $0.00034 $0.00600
Sonnet 5 $0.00013 $0.00240
Haiku 4.5 $0.00007 $0.00120

Measured 3d ago against content hash f7fd2abac142, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

data-quality-gate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

examples/data-pipeline/skills/data-quality-gate/SKILL.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Data Quality Gate

Add or extend validation checks that block bad data from propagating through the pipeline.

Inputs

  • Stage name where the gate should run (e.g., customer_events)
  • Check type: null_rate | range | referential | row_count | custom
  • Column(s) affected
  • Threshold or reference table (depending on check type)
  • Severity: warn (log and continue) or fail (halt the pipeline)

Steps

  1. Identify where to add the gate Gates run after ingestion (raw → staging) or after a transform (staging → marts). Most gaps are caught earliest; prefer adding checks at the earliest stage where the data is available.

  2. Write the check

    Null-rate check:

    def check_null_rate(df, column, threshold=0.05):
        rate = df[column].isnull().mean()
        if rate > threshold:
            raise DataQualityError(
                f"{column} null rate {rate:.1%} exceeds threshold {threshold:.1%}"
            )
    

    Range check:

    def check_range(df, column, min_val, max_val):
        out_of_range = df[(df[column] < min_val) | (df[column] > max_val)]
        if len(out_of_range) > 0:
            raise DataQualityError(
                f"{column}: {len(out_of_range)} rows outside [{min_val}, {max_val}]"
            )
    

    Referential integrity check:

    def check_referential(df, fk_column, reference_df, pk_column):
        orphans = df[~df[fk_column].isin(reference_df[pk_column])]
        if len(orphans) > 0:
            raise DataQualityError(
                f"{fk_column}: {len(orphans)} rows with no matching {pk_column}"
            )
    

    Row-count sanity check:

    def check_row_count(df, min_rows, max_rows=None):
        n = len(df)
        if n < min_rows:
            raise DataQualityError(f"Only {n} rows; expected at least {min_rows}")
        if max_rows and n > max_rows:
            raise DataQualityError(f"{n} rows exceeds max {max_rows}")
    
  3. Register the check in the stage's test suite Add the check to pipelines/ingestion/{stage_name}/tests/test_quality.py or the dbt schema YAML:

    # dbt schema
    - name: {column}
      tests:
        - not_null
        - dbt_utils.accepted_range:
            min_value: {min}
            max_value: {max}
    

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 116 lines · 67 tokens per session scan A f7fd2abac142

Subscribe to this mod's changes

data-quality-gate is a skill published in the GitHub repository zakelfassi/skills-driven-development (18 stars, last pushed 1mo ago), licensed MIT. It adds 67 tokens to every session and 1,201 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

bigquery-ai-ml

Leverages BigQuery's built-in machine learning and GenAI capabilities for advanced data analytics. Use when you need to write SQL queries that perform time-series forecasting, predict values, detect outliers or anomalies, find key drivers, perform semantic search or vector search, classify text, calculate similarity…

google/skills · 104 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

referral-program

When the user wants to design, launch, or optimize an in-app referral / invite / share-to-earn program — including reward structure, mechanics, fraud prevention, deep link setup, and viral coefficient measurement. Use when the user mentions "referral program", "invite a friend", "refer and earn", "share to earn"…

Eronred/aso-skills · 159 tokens

app-marketing-context

When the user wants to create or update their app marketing context document. Also use when the user mentions "app context", "marketing brief", "app positioning", or when starting any ASO or app marketing project. This is the foundation skill — all other skills check for this context first.

Eronred/aso-skills · 63 tokens

chenhao-limit-up

Use when evaluating A-share limit-up (涨停板) setups through Chen Hao's sentiment and momentum lens: market emotion cycles, board strength, follow-through, and short-term aggressive momentum trading.

questflowai/investorskills · 44 tokens