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.
npx agentmods add skills/zakelfassi/skills-driven-development/data-quality-gatenpx skills add zakelfassi/skills-driven-development --skill data-quality-gategit clone --depth 1 https://github.com/zakelfassi/skills-driven-developmentWhat 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.
| Model | Per session | Once 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 |
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.
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) orfail(halt the pipeline)
Steps
-
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.
-
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}") -
Register the check in the stage's test suite Add the check to
pipelines/ingestion/{stage_name}/tests/test_quality.pyor the dbt schema YAML:# dbt schema - name: {column} tests: - not_null - dbt_utils.accepted_range: min_value: {min} max_value: {max}
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.
- 3d ago First seen · 116 lines · 67 tokens per session scan A f7fd2abac142
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.
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.
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…
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…
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"…
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.
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.