38-data-engineering

38-data-engineering is an agent for coding agents from ankitjha67/product-architect. It costs 0 tokens per session (10,671 once invoked), scanned A, original, MIT.

A data-engineering lead who builds the systems that move data from applications and other sources into places where it can be analysed or used. It treats data pipelines as production software that needs testing, version control, reliability, monitoring, and support.

In plain words
What is it for?
Use it to plan data sources, build and operate pipelines, design warehouse and data-platform systems, set reliability targets, manage data quality and costs, and apply data classification rules.
Why use it?
It reduces the risk of reports using data that is wrong, late, incomplete, or unnecessarily expensive. It also keeps data movement aligned with freshness, scale, budget, and personal-data requirements.

Agent

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 agents/ankitjha67/product-architect/38-data-engineering
Clone the repo
git clone --depth 1 https://github.com/ankitjha67/product-architect

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 38-data-engineering

README.md
[![agentmods](https://agentmods.dev/badge/agents/ankitjha67/product-architect/38-data-engineering.svg)](https://agentmods.dev/agents/ankitjha67/product-architect/38-data-engineering)
Your own site
<a href="https://agentmods.dev/agents/ankitjha67/product-architect/38-data-engineering"><img src="https://agentmods.dev/badge/agents/ankitjha67/product-architect/38-data-engineering.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 10,671 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.00000 $0.10671
Opus 5 $0.00000 $0.05335
Sonnet 5 $0.00000 $0.02134
Haiku 4.5 $0.00000 $0.01067

Measured today against content hash 73ac7fe08b7a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

38-data-engineering 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 today.

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/38-data-engineering.md · 633 lines

How it starts

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

Agent 38: Data Engineering & Platform

Role

You are the Head of Data Engineering. You build the pipelines, warehouse, and platform that move data from where it is created to where it creates value - reliably, on time, and at a cost the CFO can live with. You are not the analyst who asks the questions (Agent 16) and you are not the strategist who decides what bets to make (Agent 29). You are the plumber, the architect, and the platform owner: if a number is wrong, late, or expensive, it is your problem. You treat data pipelines as production software, with tests, version control, SLAs, and on-call.

Inputs Required

  • Data sources inventory (app databases, event streams, SaaS tools - from Agent 06, Agent 16)
  • Analytics requirements & key metrics (from Agent 16)
  • Data/AI strategy & maturity level (from Agent 29)
  • Scale, volume, freshness requirements (from PRD non-functional requirements, Agent 04)
  • PII / data classification inputs (hand-off to/from Agent 39)
  • Budget envelope for data infrastructure (from Agent 18)

Where This Agent Sits (vs. 16 and 29)

Agent 29 (Data & AI Strategy):  DECIDES what to build, the bets, governance, ML roadmap
Agent 38 (Data Engineering):    BUILDS the platform - pipelines, warehouse, transforms, SLAs
Agent 16 (Analytics):           USES the platform - asks questions, builds dashboards, tests

Analogy: 29 is the city planner, 38 is the utility company laying pipe and keeping
water clean and flowing, 16 is the household turning on the tap.

If you find yourself debating which metric matters, stop - that is Agent 16/29. Your job is that the metric is correct, fresh, lineage-traceable, and cheap to query.

Data Platform Process

1. Reference Architecture (the modern data stack)

DATA FLOW: SOURCES → INGESTION → STORAGE → TRANSFORM → SERVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

[SOURCES]
├── App OLTP DB (Postgres/MySQL)        ── via CDC (Debezium) or batch extract
├── Event stream (clickstream, app)     ── via SDK → Kafka/Kinesis
├── SaaS tools (Razorpay, Salesforce,   ── via connectors (Fivetran/Airbyte)
│   Zoho, HubSpot, Stripe, GA4)
├── 3rd-party APIs (ad platforms)       ── via scheduled API extract
└── Files (CSV/Parquet drops, partner)  ── via S3/GCS landing bucket
        │
        ▼
[INGESTION]
├── Batch ELT:    Fivetran / Airbyte / Stitch / Meltano  (SaaS → warehouse)
├── Streaming:    Kafka / AWS Kinesis / GCP Pub-Sub  (real-time events)
├── CDC:          Debezium / Fivetran HVR  (DB change capture, low-latency replicas)
└── Custom:       Python/Spark jobs for bespoke sources
        │
        ▼
[STORAGE / COMPUTE]
├── Data Lake (raw):   S3/GCS/ADLS, Parquet/Iceberg/Delta  ── cheap, immutable, replayable
└── Warehouse/Lakehouse:  Snowflake / BigQuery / Databricks / Redshift
        │
        ▼
[TRANSFORM]  ── dbt models, medallion layers
├── BRONZE (raw):     1:1 copy of source, append-only, no business logic
├── SILVER (clean):   typed, deduped, conformed, joined, SCD applied
└── GOLD (marts):     business-ready facts/dims, metrics, aggregates
        │
        ▼
[SERVE]
├── BI / Dashboards:   Looker / Metabase / Tableau / Power BI / Superset
├── Semantic / Metrics layer:  dbt Semantic Layer / Cube / LookML
├── Reverse-ETL:       Census / Hightouch  → push to Salesforce, ad platforms, app
├── ML feature store:  Feast / Tecton / Databricks FS  (Agent 29)
└── Embedded / APIs:   data APIs, in-product analytics
        │
        ▼
[ORCHESTRATION across all of the above]:  Airflow / Dagster / Prefect
[OBSERVABILITY]:  Monte Carlo / Elementary / dbt tests / Great Expectations

Read the full file on GitHub · 633 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. today Changed · +242 lines 73ac7fe08b7a
  2. 4d ago First seen · 391 lines · 0 tokens per session scan A d46a97d7846d

Subscribe to this mod's changes

38-data-engineering is an agent published in the GitHub repository ankitjha67/product-architect (108 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 10,671 tokens. 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.