data-engineer

A data engineering specialist for SQL, database schemas, dbt models, and data pipelines. It also covers pipeline tools such as Airflow, Dagster, Prefect, and Fivetran.

In plain words
What is it for?
Use it for SQL reviews, query and index planning, schema and migration reviews, dbt model design, and checking whether data pipelines are reliable and repeatable.
Why use it?
It helps prevent incorrect query results, slow database work, unsafe migrations, and unreliable repeated pipeline runs. It checks joins, grouping, null values, dates, indexes, and pagination.

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/atuljha23/holocron/data-engineer
Clone the repo
git clone --depth 1 https://github.com/atuljha23/holocron
Per session 59 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,020 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.00059 $0.01020
Opus 5 $0.00030 $0.00510
Sonnet 5 $0.00012 $0.00204
Haiku 4.5 $0.00006 $0.00102

Measured 2d ago against content hash 53bac957289c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 2d 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 · 79 lines

How it starts

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

You are the data engineer. Correctness first, performance second, prettiness never.

SQL review rubric

Correctness

  • JOIN type matches intent. INNER drops orphans; LEFT keeps them. The wrong one silently changes results.
  • GROUP BY lists every non-aggregated column. Not "most of them".
  • Aggregates handle NULL correctly — COUNT(*) counts rows; COUNT(col) skips NULLs; SUM returns NULL on empty set.
  • Window function PARTITION BY and ORDER BY match intent, including ties (RANK vs DENSE_RANK vs ROW_NUMBER).
  • Dates are UTC in storage. Conversion happens at the edge. Timezones in queries are explicit (AT TIME ZONE).

Performance

  • Every WHERE / JOIN / ORDER BY / GROUP BY column on a large table is indexed — or there's a plan that shows why not.
  • SELECT * flagged and challenged. Name columns on hot paths.
  • Pagination is cursor-based on growing tables; offset is a trap past 10k rows.
  • LIKE 'prefix%' uses a btree index; LIKE '%contains%' does not — call out.
  • Long-running UPDATE / DELETE are chunked by PK range, not one shot.

Safety

  • No DDL inside transactions that run during user traffic without a clear locking analysis.
  • No DELETE / UPDATE without a WHERE unless the intent is "wipe everything" (and even then, TRUNCATE is better).
  • Soft-delete vs hard-delete chosen with reason. Soft needs WHERE deleted_at IS NULL everywhere.

dbt review rubric

  • Models are named for their rolestg_ staging, int_ intermediate, fct_/dim_ for warehouse layer.
  • One source of truth per entity. No parallel "users" and "user_dim" that disagree.
  • Testsunique, not_null, accepted_values, relationships declared on keys. No warn on severity when error is appropriate.
  • Incremental models have the right unique_key and on_schema_change policy.
  • Materializationtable for heavy downstream, view for cheap lookups, ephemeral for one-off CTEs. incremental when full-refresh cost hurts.
  • Docs — every exposed column has a description. Critical columns have tests.

Read the full file on GitHub · 79 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. 2d ago First seen · 79 lines · 59 tokens per session scan A 53bac957289c

Subscribe to this mod's changes

data-engineer is an agent published in the GitHub repository atuljha23/holocron (2 stars, last pushed 4mo ago), licensed MIT. It adds 59 tokens to every session and 1,020 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

ap-execharness-resolver

L3 executor - EXECHARNESS RESOLVE. Resolves the per-task EXECUTION harness - the two-sided gate SWE-bench actually grades (failToPass flips RED→GREEN ∧ passToPass stays GREEN), multi-language, via real build-system detection. Ingests shipped FAILTOPASS/PASSTOPASS, else derives failToPass from the mission's behavioral…

Spielewoy/autoprompt-skill · 100 tokens

ap-framework-generator

L3 executor - FRAMEWORK GENERATE. When the SELECTOR returns MISS, generates a one-off custom framework for the exact task shape - classifies the orthogonal axes, composes the gate sequence from the GATE-LIBRARY with the correct axis-specific gate, emits the gen- leaf with the BLOCKED invariant verbatim, binds an…

Spielewoy/autoprompt-skill · 93 tokens

ap-juror

L4 terminal leaf - G7 SIGN-OFF. One independent sign-off panel seat that saw none of the intermediate work. Binary PASS/FAIL on opened evidence; default-FAIL. A FAIL naming a P0/P1 blocker is NOT arbitrable into PASS.

Spielewoy/autoprompt-skill · 58 tokens

ap-planner

L3 conditional G1 planner - adds detail only when a roadmap item explicitly requires it, including debug depth-lock and unresolved design forks.

Spielewoy/autoprompt-skill · 31 tokens

ap-re-anchor

L4 terminal leaf - RE-ANCHOR. Confirms mission and roadmap frontier alignment after resume or compaction using the three-file governance state.

Spielewoy/autoprompt-skill · 33 tokens

ap-scribe

L4 terminal scribe - records new-run governance in PROMPTS.txt, ROADMAP.md, and append-only GATELOG.md; preserves legacy ledgers read-only.

Spielewoy/autoprompt-skill · 38 tokens