data-engineering

data-engineering is a skill for Kiro from ihatesea69/kiro-kit. It costs 30 tokens per session (295 once invoked), scanned A, original, MIT.

A guide to building data pipelines, which move and transform data between systems, and the infrastructure that supports them. It covers ETL, where data is extracted, transformed, and loaded, along with storage and quality checks.

In plain words
What is it for?
Use it to design ingestion and transformation pipelines, warehouse schemas, streaming systems, incremental jobs, and data-quality checks.
Why use it?
It helps make data processing repeatable, validated, and easier to monitor as data volumes and sources grow.

Skill for Kiro

Written for Kiro: installed under .kiro/.

Good fit Use it to design ingestion and transformation pipelines, warehouse schemas, streaming systems, incremental jobs, and data-quality checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ihatesea69/kiro-kit/data-engineering
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.

Any agent
npx skills add ihatesea69/kiro-kit --skill data-engineering
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/kiro-kit

Made for: Kiro.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/data-engineering/github.svg)](https://agentmods.dev/skills/ihatesea69/kiro-kit/data-engineering)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/data-engineering"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/data-engineering/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-engineering

Your own site · 80×15
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/data-engineering"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/data-engineering.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 295 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00030 $0.00295
Opus 5 $0.00015 $0.00148
Sonnet 5 $0.00006 $0.00059
Haiku 4.5 $0.00003 $0.00030

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

Security

Grade A, and why

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 7d 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.

.kiro/skills/data-engineering/SKILL.md · 48 lines

What it actually says

Data Engineering

Activate this skill when designing data pipelines or working with data infrastructure.

When to Use

  • Building ETL/ELT pipelines
  • Designing data warehouse schemas
  • Implementing streaming data processing
  • Optimizing data storage and retrieval
  • Setting up data quality checks

Core Tools

  • Apache Airflow: Workflow orchestration
  • dbt: SQL-based transformations
  • Apache Spark/PySpark: Distributed processing
  • DVC: Data version control
  • Great Expectations: Data validation

Patterns

# Airflow DAG pattern
from airflow import DAG
from airflow.operators.python import PythonOperator

with DAG("etl_pipeline", schedule="@daily") as dag:
    extract = PythonOperator(task_id="extract", python_callable=extract_fn)
    transform = PythonOperator(task_id="transform", python_callable=transform_fn)
    load = PythonOperator(task_id="load", python_callable=load_fn)
    extract >> transform >> load

Rules

  • Idempotent operations (safe to re-run)
  • Schema validation at pipeline boundaries
  • Incremental processing over full reloads when possible
  • Monitor data freshness and quality metrics
  • Version control data schemas alongside code
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. 7d ago First seen · 48 lines · 30 tokens per session scan A 1dd9c1e7f648

Subscribe to this mod's changes

data-engineering is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 22d ago), licensed MIT. It adds 30 tokens to every session and 295 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories