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 agents/atuljha23/holocron/data-engineergit clone --depth 1 https://github.com/atuljha23/holocronWhat 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.00059 | $0.01020 |
| Opus 5 | $0.00030 | $0.00510 |
| Sonnet 5 | $0.00012 | $0.00204 |
| Haiku 4.5 | $0.00006 | $0.00102 |
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.
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
JOINtype matches intent.INNERdrops orphans;LEFTkeeps them. The wrong one silently changes results.GROUP BYlists every non-aggregated column. Not "most of them".- Aggregates handle
NULLcorrectly —COUNT(*)counts rows;COUNT(col)skips NULLs;SUMreturns NULL on empty set. - Window function
PARTITION BYandORDER BYmatch intent, including ties (RANKvsDENSE_RANKvsROW_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 BYcolumn 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/DELETEare chunked by PK range, not one shot.
Safety
- No DDL inside transactions that run during user traffic without a clear locking analysis.
- No
DELETE/UPDATEwithout aWHEREunless the intent is "wipe everything" (and even then,TRUNCATEis better). - Soft-delete vs hard-delete chosen with reason. Soft needs
WHERE deleted_at IS NULLeverywhere.
dbt review rubric
- Models are named for their role —
stg_staging,int_intermediate,fct_/dim_for warehouse layer. - One source of truth per entity. No parallel "users" and "user_dim" that disagree.
- Tests —
unique,not_null,accepted_values,relationshipsdeclared on keys. Nowarnon severity whenerroris appropriate. - Incremental models have the right
unique_keyandon_schema_changepolicy. - Materialization —
tablefor heavy downstream,viewfor cheap lookups,ephemeralfor one-off CTEs.incrementalwhen full-refresh cost hurts. - Docs — every exposed column has a description. Critical columns have
tests.
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.
- 2d ago First seen · 79 lines · 59 tokens per session scan A 53bac957289c
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.
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…
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…
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.
ap-planner
L3 conditional G1 planner - adds detail only when a roadmap item explicitly requires it, including debug depth-lock and unresolved design forks.
ap-re-anchor
L4 terminal leaf - RE-ANCHOR. Confirms mission and roadmap frontier alignment after resume or compaction using the three-file governance state.
ap-scribe
L4 terminal scribe - records new-run governance in PROMPTS.txt, ROADMAP.md, and append-only GATELOG.md; preserves legacy ledgers read-only.