dataset-onboard

dataset-onboard is a skill for Claude Code, Codex from zakelfassi/skills-driven-development. It costs 71 tokens per session (991 once invoked), scanned A, original, MIT.

A workflow for bringing a new raw dataset into a data platform. It checks the columns and data quality, documents the dataset, creates a profiling notebook, and sets up ingestion.

In plain words
What is it for?
Use it when a partner delivers a new file or another data source needs to be added, including documenting its owner, update frequency, columns, missing values, and ingestion process.
Why use it?
It removes the repeated manual work of understanding a new CSV, Parquet, JSON, or Avro source and recording how it should enter the platform.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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/dataset-onboard
Any agent
npx skills add zakelfassi/skills-driven-development --skill dataset-onboard
Clone the repo
git clone --depth 1 https://github.com/zakelfassi/skills-driven-development

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dataset-onboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/zakelfassi/skills-driven-development/dataset-onboard.svg)](https://agentmods.dev/skills/zakelfassi/skills-driven-development/dataset-onboard)
Your own site
<a href="https://agentmods.dev/skills/zakelfassi/skills-driven-development/dataset-onboard"><img src="https://agentmods.dev/badge/skills/zakelfassi/skills-driven-development/dataset-onboard.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 991 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.1 $0.00071 $0.00991
Opus 5 $0.00036 $0.00495
Sonnet 5 $0.00014 $0.00198
Haiku 4.5 $0.00007 $0.00099

Measured 6d ago against content hash 6da5699e5f58, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

dataset-onboard 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 6d 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/dataset-onboard/SKILL.md · 93 lines

How it starts

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

Dataset Onboard

Bring a new raw dataset into the platform with schema documentation, profiling, and an ingestion job.

Inputs

  • Dataset name (snake_case, e.g., customer_events)
  • Source format (csv, parquet, json, avro)
  • Source path or URI (S3, GCS, local mount, API endpoint)
  • Expected frequency (daily, weekly, on-demand)
  • Owner team and contact

Steps

  1. Schema sniff

    import pandas as pd
    df = pd.read_csv("{source_path}", nrows=1000)   # or read_parquet, etc.
    print(df.dtypes)
    print(df.describe(include="all"))
    print(df.isnull().sum() / len(df))              # null rates
    

    Document:

    • Column names, inferred types, null rates, example values
    • Detected anomalies (mixed types, encoding issues, unexpected nulls)
  2. Create the data dictionary entry Edit docs/data-dictionary/{dataset_name}.md:

    # {DatasetName}
    
    **Owner:** {team}  **Contact:** {email}
    **Source:** {uri}  **Frequency:** {frequency}
    
    | Column | Type | Nullable | Description |
    |--------|------|----------|-------------|
    | ...    | ...  | ...      | ...         |
    
  3. Generate the profiling notebook

    cp templates/profiling-notebook.ipynb \
       notebooks/profiling/{dataset_name}_profile.ipynb
    

    Edit the notebook to use the correct source path and column list. Run it to confirm it completes without errors.

  4. Create the ingestion job

    pipelines/ingestion/{dataset_name}/
    ├── ingest.py          # main ingestion script
    ├── schema.py          # column definitions and type coercion
    ├── config.yaml        # source path, schedule, destination table
    └── tests/
        └── test_ingest.py # unit test with a small fixture file
    

    The ingestion script must be idempotent (re-running on the same input produces the same output; no duplicate rows).

  5. Register in the scheduler Add a DAG entry in dags/{dataset_name}_ingest.py (Airflow) or a flow in flows/ (Prefect). Set the schedule to match {frequency}.

Read the full file on GitHub · 93 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. 6d ago First seen · 93 lines · 71 tokens per session scan A 6da5699e5f58

Subscribe to this mod's changes

dataset-onboard is a skill published in the GitHub repository zakelfassi/skills-driven-development (18 stars, last pushed 1mo ago), licensed MIT. It adds 71 tokens to every session and 991 once invoked, about $0.0004 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

bigquery-bigframes

Generates Python code using BigQuery DataFrames (BigFrames), the pandas/scikit-learn-style API over BigQuery. Use when writing BigFrames code or doing pandas-style dataframe/ML work against BigQuery (e.g. in a notebook). Don't use for SQL-first workflows or the google-cloud-bigquery client library — use…

google/skills · 76 tokens

google-cloud-solution-hybrid-search-alloydb

Discovers requirements and generates architectural, design, and deployment guidance for dynamic hybrid search systems by combining semantic search and keyword search. Optimized for AlloyDB hybrid search use cases in Google Cloud. Use when users need vector search combined with structured SQL filtering, faceted…

google/skills · 115 tokens

coverage-tracker

Run a Google Alerts-style keyword coverage tracker. Uses news-search for recent keyword queries, lets the LLM dedupe and classify real features versus junk, stores decisions in SQLite, and alerts only on new real coverage.

elvisun/newsjack · 47 tokens

vector-db-rag-expert

Expert guide for high-performance Vector Databases, RAG architectures, pgvector HNSW indexing, hybrid search (Dense + BM25), and semantic chunking / Panduan ahli Vector DB, arsitektur RAG, pgvector HNSW, dan hybrid search.

roedyrustam/vibes-plug · 62 tokens

build-feature-store

Build a feature store using Feast for centralized feature management, configure offline and online stores for batch and real-time serving, define feature views with transformations, and implement point-in-time correct joins for ML pipelines. Use when managing features for multiple ML models, ensuring training-serving…

pjt222/agent-almanac · 86 tokens

okf-bigquery

Google Cloud BigQuery connector that produces and ingests Open Knowledge Format (OKF) bundles from dataset schemas, table/field descriptions, and metadata. Use when documenting or cataloging BigQuery datasets, extracting schema metadata into OKF, or syncing descriptions back to BigQuery tables and fields.

xSAVIKx/okf-skills · 63 tokens