etl-tools
Installation
SKILL.md
ETL Tools & Data Orchestration
Production-grade data pipeline development with Apache Airflow, dbt, and modern orchestration patterns.
Quick Start
# Apache Airflow 2.8+ TaskFlow API
from datetime import datetime, timedelta
from airflow.decorators import dag, task
from airflow.providers.postgres.hooks.postgres import PostgresHook
from airflow.providers.amazon.aws.hooks.s3 import S3Hook
import pandas as pd
default_args = {
"owner": "data-engineering",
"depends_on_past": False,
"email_on_failure": True,
"email": ["alerts@company.com"],
Related skills
More from pluginagentmarketplace/custom-plugin-data-engineer
statistics-math
Statistics, probability, linear algebra, and mathematical foundations for data science
327deep-learning
PyTorch, TensorFlow, neural networks, CNNs, transformers, and deep learning for production
48big-data
Apache Spark, Hadoop, distributed computing, and large-scale data processing for petabyte-scale workloads
43python-programming
Master Python fundamentals, OOP, data structures, async programming, and production-grade scripting for data engineering
31data-engineering
Data pipeline architecture, ETL/ELT patterns, data modeling, and production data platform design
29git-version-control
Git workflows, branching strategies, collaboration, and code management
27