airflow-and-workflow-orchestration

airflow-and-workflow-orchestration is a skill for Claude Code, Codex from vaquarkhan/data-engineering-agent-skills. It costs 61 tokens per session (897 once invoked), scanned A, original, MIT.

A guide to coordinating data workflows with tools such as Airflow, cloud schedulers, and event-driven workflow systems. A workflow scheduler decides when tasks run, what depends on what, and what happens after failure.

In plain words
What is it for?
Use it to design or modify scheduled workflows, event-triggered pipelines, sensors, task dependencies, retries, backfills, and release checks.
Why use it?
It separates scheduling and coordination from the code that processes data. This makes retries, backfills, triggers, ownership, service targets, and safe publishing easier to define.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to design or modify scheduled workflows, event-triggered pipelines, sensors, task dependencies, retries, backfills, and release checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vaquarkhan/data-engineering-agent-skills/airflow-and-workflow-orchestration
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 vaquarkhan/data-engineering-agent-skills --skill airflow-and-workflow-orchestration
Clone the repo
git clone --depth 1 https://github.com/vaquarkhan/data-engineering-agent-skills

Made for: Claude Code, Codex.

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 airflow-and-workflow-orchestration

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/airflow-and-workflow-orchestration"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/airflow-and-workflow-orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 897 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.
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.00061 $0.00897
Opus 5 $0.00030 $0.00449
Sonnet 5 $0.00012 $0.00179
Haiku 4.5 $0.00006 $0.00090

Measured 12d ago against content hash 9829eb371c3e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

airflow-and-workflow-orchestration 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 12d 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.

skills/airflow-and-workflow-orchestration/SKILL.md · 89 lines

How it starts

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

Airflow And Workflow Orchestration

Overview

Use this skill when the problem is orchestration rather than transformation logic. It helps agents design Airflow, MWAA, Cloud Composer, Azure Data Factory, Step Functions, Google Cloud Workflows, or Databricks Workflows patterns with explicit dependencies, retries, ownership, backfills, and publish-safe cutover behavior.

When to Use

  • building or modifying Airflow DAGs
  • choosing between scheduler-driven, event-driven, or platform-native orchestration
  • designing scheduling, sensors, task dependencies, or retry policy
  • coordinating ingestion, transformation, quality checks, and publish steps
  • changing backfill, catchup, or SLA behavior

Do not use this as a substitute for the underlying processing skill. Orchestration coordinates work; it does not define the compute logic itself.

Workflow

  1. Define the workflow contract. Capture:

    • owner
    • schedule or trigger mode
    • upstream and downstream dependencies
    • task boundaries
    • success and failure signals
  2. Choose the orchestration model before choosing the product. Decide whether the workload is:

    • scheduler-driven
    • event-driven
    • metadata-driven fan-out
    • platform-native inside a lakehouse
  3. Separate orchestration concerns from processing concerns. Workflow tasks should call well-defined jobs, not hide business logic in orchestration code.

  4. Design retries and timeouts deliberately. Account for:

    • idempotency
    • duplicate writes
    • sensor cost
    • late-arriving upstream data
    • alert routing
  5. Make backfill behavior explicit. Decide how catchup, reruns, and historical windows behave before enabling them.

  6. Gate publish steps on validation. A successful task chain is not enough if downstream tables fail quality checks.

Service Selection Hints

  • AWS: prefer MWAA for dependency-rich DAGs, Step Functions for branching and service coordination, and lightweight event triggers for arrival-based flows.
  • Azure: prefer Azure Data Factory or Synapse Pipelines for connector-heavy and parameterized workflows, and Databricks Workflows when execution stays in Databricks.
  • GCP: prefer Cloud Composer for DAGs, Google Cloud Workflows for API and service coordination, and Cloud Scheduler plus Pub/Sub for simple triggers.
  • Databricks: prefer Databricks Workflows or Delta Live Tables for platform-native jobs, and use an external orchestrator when dependencies cross platform boundaries.
  • Load references/pipeline-orchestration-patterns.md when selecting or reviewing the orchestration model, not only the syntax of one tool.

Read the full file on GitHub · 89 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. 12d ago First seen · 89 lines · 61 tokens per session scan A 9829eb371c3e

Subscribe to this mod's changes

airflow-and-workflow-orchestration is a skill published in the GitHub repository vaquarkhan/data-engineering-agent-skills (45 stars, last pushed 3mo ago), licensed MIT. It adds 61 tokens to every session and 897 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-30.

Related

Other skills, from other repositories

cost-optimization

Optimize cloud costs across AWS, Azure, GCP, and OCI through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.

wshobson/agents · 48 tokens

terraform-module-library

Build reusable Terraform modules for AWS, Azure, GCP, and OCI infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

wshobson/agents · 44 tokens

linkerd-patterns

Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking with minimal overhead.

wshobson/agents · 41 tokens

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens

gcloud-usage

This skill should be used when user asks about "GCloud logs", "Cloud Logging queries", "Google Cloud metrics", "GCP observability", "trace analysis", or "debugging production issues on GCP".

fcakyon/claude-codex-settings · 49 tokens

openship-config

This skill should be used when the user asks to "create openship.json", "configure an OpenShip deployment", "make a repo deployable on OpenShip", or fix "openship config validate" errors.

fcakyon/claude-codex-settings · 47 tokens