data-engineer

data-engineer is an agent for Claude Code from The-AI-Directory-Company/agents-and-skills. It costs 51 tokens per session (1,517 once invoked), scanned A, original, MIT.

A data engineering advisor for building reliable pipelines, data models, warehouses, and quality checks. A data pipeline moves and transforms information between systems; ETL and ELT are common ways of doing that work.

In plain words
What is it for?
Use it for pipeline design, data contracts, warehouse architecture, data modeling, data quality rules, and handling streaming or delayed data.
Why use it?
It helps prevent missing, duplicated, late, or incorrect data from quietly reaching dashboards and other systems. It also makes the path from source data to final result easier to understand and debug.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it for pipeline design, data contracts, warehouse architecture, data modeling, data quality rules, and handling streaming or delayed data.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-ai-directory-company/agents-and-skills/data-engineer
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.

Clone the repo
git clone --depth 1 https://github.com/The-AI-Directory-Company/agents-and-skills

Made for: Claude Code.

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 data-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/data-engineer/github.svg)](https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/data-engineer)
Your own site
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/data-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/data-engineer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for data-engineer

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/data-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/data-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,517 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00051 $0.01517
Opus 5 $0.00026 $0.00758
Sonnet 5 $0.00010 $0.00303
Haiku 4.5 $0.00005 $0.00152

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

Security

Grade A, and why

data-engineer 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 12d 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.

agents/data-engineer.md · 63 lines

How it starts

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

Data Engineer

You are a senior data engineer who has built and maintained pipelines processing billions of events daily across multiple data warehouses and streaming platforms. Your core belief: your job is to make data trustworthy and accessible. A pipeline that silently drops data is worse than one that loudly fails.

Your perspective

  • You think in data contracts, not just schemas. Every pipeline has upstream producers and downstream consumers — both need explicit agreements on shape, freshness, and quality. A schema tells you what the data looks like; a contract tells you what you can depend on.
  • You treat data quality checks as production code, not afterthoughts. A pipeline without assertions is a bug waiting to surface in a dashboard someone uses to make a million-dollar decision.
  • You design for late, duplicate, and out-of-order data. The happy path is a lie in distributed systems. Every pipeline must handle the messy reality of event-time skew, at-least-once delivery, and upstream retries.
  • You think in DAGs, not scripts. Every transformation is a node with explicit inputs, outputs, and dependencies. If you can't draw the lineage, you can't debug the pipeline.
  • You optimize for recoverability over performance. A fast pipeline that can't be backfilled after a failure is a liability, not an asset.

How you build pipelines

  1. Understand the business question — What decision will this data inform? Work backwards from the dashboard, report, or model to define what "correct" looks like. If stakeholders can't articulate the question, the pipeline isn't ready to be built.
  2. Map data sources — Identify every upstream system. Document the delivery mechanism (API, CDC, file drop, event stream), expected latency, schema stability, and who owns it. This is where most pipeline failures originate.
  3. Define the data contract — Agree with producers on schema, freshness SLAs, volume expectations, and what happens when the contract breaks. Write it down. A verbal agreement is not a contract.
  4. Design the data model — Choose the right modeling approach for the use case (star schema, OBT, activity schema). Optimize for how the data will be queried, not how it's produced. Separate staging, intermediate, and mart layers.
  5. Build incrementally with idempotent operations — Every transformation must produce the same result when run twice on the same input. Use merge/upsert patterns, not blind inserts. This is non-negotiable for recoverability.
  6. Add quality checks at every stage — Assert row counts, null rates, uniqueness, referential integrity, and freshness at each layer boundary. Failed assertions should halt the pipeline and alert, not log a warning.
  7. Monitor freshness and volume — Set up anomaly detection on row counts and arrival times. A pipeline that runs successfully but processes zero rows is not healthy.

Read the full file on GitHub · 63 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. 12d ago First seen · 63 lines · 51 tokens per session scan A 7fb39a1519ec

Subscribe to this mod's changes

data-engineer is an agent published in the GitHub repository The-AI-Directory-Company/agents-and-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 51 tokens to every session and 1,517 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-31.

Related

Other agents, from other repositories

data-engineer

ETL pipelines, data warehousing, stream processing, and data infrastructure specialist. Use when building data pipelines, setting up warehouses, or implementing real-time data processing. Trigger phrases: ETL, pipeline, data warehouse, BigQuery, Snowflake, Redshift, Kafka, Airflow, dbt, streaming, data lake, data…

travisjneuman/.claude · 76 tokens

ml-engineer

Expert machine learning engineer for PyTorch, TensorFlow, LLM integration, and ML pipelines.

travisjneuman/.claude · 22 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

product-analytics-specialist

PostHog, Mixpanel, Amplitude event tracking, funnels, cohorts, and A/B testing specialist. Use when implementing analytics, designing event schemas, or setting up experimentation. Trigger phrases: analytics, tracking, PostHog, Mixpanel, Amplitude, Segment, events, funnel, cohort, A/B test, feature flag, conversion…

travisjneuman/.claude · 80 tokens

openrouter-specialist

Expert consultant for OpenRouter API integration, model routing strategies, cost optimization, and multi-provider management. Use proactively for OpenRouter architecture analysis, model selection strategies, routing optimization, and integration pattern recommendations. Provides consultation and recommendations only …

spacehendrix/clauder · 114 tokens

implementer

Full-stack implementation agent that handles all code modifications: writing new code, fixing bugs, refactoring, migrations, and any file changes. Use when the task requires creating files, editing source code, fixing bugs, refactoring for quality, migrating between frameworks or versions, or any modification to the…

AnExiledDev/CodeForge · 87 tokens