/managed-airflow-migrations
Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning
$ npx -y skills add google/skills --skill managed-airflow-migrations --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/managed-airflow-migrations
Context preview
The summary Claude sees to decide when to auto-load this skill.
Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning
SKILL.md
managed-airflow-migrations.SKILL.mdname: managed-airflow-migrations
description: Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning patterns for breaking changes. Use when migrating the DAG code to newer Airflow version. Don't use when checking DAG run failures unrelated to code migration.
metadata:
category: BigDataAndAnalytics
Managed Service for Apache Airflow (formerly Cloud Composer) Migration Guide
This skill guides you through the process of adjusting Airflow DAGs from an existing Managed Service for Apache Airflow (formerly Cloud Composer) environment (or available locally) to make them compatible with **Airflow 2.11.1** (MSAA Gen 2 or 3) or **Airflow 3** (MSAA Gen 3).
--------------------------------------------------------------------------------
Phase 1: Discovery & Download
Before making any changes, download the existing DAG files if explicitly requested. Inspect the source environment to confirm source version only if explicitly requested. For detailed instructions about environment inspection and downloading files check [references/environment-inspection.md](references/environment-inspection.md).
--------------------------------------------------------------------------------
Phase 2: Target Version & Dependency Mapping
2.1 Airflow 2.11.1+ Dependency Mapping
If migrating to Airflow 2.11.1 (MSAA Gen 2) or Airflow 3, use the list below to trace the version progression of key dependencies. The list covers changes needed to get to Airflow 2.11.1. Take them into account when migrating from Airflow 2 (earlier than 2.11.1) to Airflow 3.
Composer 2.10.0 (Airflow 2.10.2)
- **Google Provider**: `10.26.0`
- **SSH Provider**: `3.14.0`
- **HTTP Provider**: `4.13.3`
- **Breaking Changes**: *Baseline for oldest fully documented source.*
Composer 2.15.3 (Airflow 2.10.5)
- **Google Provider**: `18.0.0`
- **SSH Provider**: `4.1.4`
- **HTTP Provider**: `5.3.4`
- **Breaking Changes**:
- **SSH Provider 4.0.0:** Hook `timeout` removed; `get_conn()` context
manager.
- **HTTP Provider 5.0.0:** `SimpleHttpOperator` -> `HttpOperator`.
- **Google Provider 11.0.0:** `BigQueryExecuteQueryOperator` removed.
- **Google Provider 12.0.0:** Legacy Data Pipeline operators removed.
- **Google Provider 13.0.0:** `AutoMLBatchPredictOperator` removed.
- **Google Provider 17.0.0:** `BigQueryCreateEmptyTableOperator` and
`BigQueryCreateExternalTableOperator` removed; Life Sciences operators removed.
- **Google Provider 18.0.0:** Legacy DV360 operators removed.
Composer 2.16.1 (Airflow 2.10.5)
- **Google Provider**: `19.0.0`
- **SSH Provider**: `4.1.6`
- **HTTP Provider**: `5.5.0`
- **Breaking Changes**: **Google Provider 19.0.0:** AutoML operators removed
(use Vertex AI).
Composer 2.17.0 (Target Airflow 2.11.1)
- **Google Provider**: **`20.0.0`**
- **SSH Provider**: **`5.0.0`**
- **HTTP Provider**: **`6.0.2`**
- **Breaking Changes**:
- **SSH Provider 5.0.0:** `sshtunnel` removed (native tunneling).
- **HTTP Provider 6.0.0:** JSON serialization.
- **Google Provider 20.0.0:** ADLS Gen2 migration.
2.2 Airflow 3 Migration
If migrating to Airflow 3 (MSAA Gen 3), note that this is a major version upgrade with significant changes, including:
- Decoupled Task SDK (imports change from `airflow` to `airflow.sdk`).
- Removal of direct metadata DB access.
- Renaming of `Dataset` to `Asset`.
- Removal of SubDAGs and SLAs.
- Changes to context variables availability.
Take into account all applicable changes within Airflow 2 (e.g. when migrating from Airflow 2.10.2, apply changes needed to move to Airflow 2.11.1 and Airflow 3 migration changes on top of that).
--------------------------------------------------------------------------------
Phase 3: Analysis & Remediation (Scanning Downloaded Files)
Run the scan commands from the root of your local workspace (`./migration_workspace` unless indicated otherwise).
--------------------------------------------------------------------------------
3.1 Airflow 2.11.1 Core & Dependency checks
Use these scans if migrating to Airflow 2.11.1+ (intermediate step when migrating to Airflow 3).
3.1.1 Dataset Scheduling (Airflow 2.11.0)
- **Change:** DAGs scheduled on datasets only trigger if events occur while
the DAG is unpaused.
- **Scan Command:** `grep -rn "Dataset(" ./dags`
- **Remediation:** You MUST document that these DAGs must remain unpaused to
catch events, or plan manual triggers for catch-up.
3.1.2 HTML in Descriptions (Airflow 2.11.0)
- **Change:** Raw HTML in DAG docs / params is escaped by default.
- **Scan Command:**
grep -rn -E "doc_md.*<|doc_md.*>|description.*<|description.*>" ./dags
- **Remediation:** Convert HTML to Markdown, or set
`AIRFLOW__WEBSERVER__ALLOW_RAW_HTML_DESCRIPTIONS=True` in target.
3.1.3 Teardown Tasks (Airflow 2.10.5)
- **Change:** Teardowns always run when a DAG is marked failed.
- **Scan Command:** `grep -rn "as_teardown" ./dags`
- **Remediation:** Ensure teardown tasks are idempotent.
3.1.4 Pendulum 3 Upgrade (Airflow 2.11.0)
- **Change:** `Period` renamed to `Interval`, testing helpers removed.
- **Scan Command (Code):**
grep -rn -E "pendulum\.Period|pendulum\.period" ./dags
- **Scan Command (Tests):**
grep -rn -E "\.test\(|set_test_now\(" ./tests 2>/dev/null || true- **Remediation:** Replace `Period` with `Interval`, and `period(...)` with
`interval(...)`.
--------------------------------------------------------------------------------
3.2 Path A: Airflow 2.11.1 Provider Package Scan
3.2.1 SSH Provider (SSH 4
Read more
name: managed-airflow-migrations description: Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning patterns for breaking changes. Use when migrating the DAG code to newer Airflow version. Don't use when checking DAG run failures unrelated to code migration. metadata: category: BigDataAndAnalytics
Managed Service for Apache Airflow (formerly Cloud Composer) Migration Guide
This skill guides you through the process of adjusting Airflow DAGs from an existing Managed Service for Apache Airflow (formerly Cloud Composer) environment (or available locally) to make them compatible with **Airflow 2.11.1** (MSAA Gen 2 or 3) or **Airflow 3** (MSAA Gen 3).
--------------------------------------------------------------------------------
Phase 1: Discovery & Download
Before making any changes, download the existing DAG files if explicitly requested. Inspect the source environment to confirm source version only if explicitly requested. For detailed instructions about environment inspection and downloading files check [references/environment-inspection.md](references/environment-inspection.md).
--------------------------------------------------------------------------------
Phase 2: Target Version & Dependency Mapping
2.1 Airflow 2.11.1+ Dependency Mapping
If migrating to Airflow 2.11.1 (MSAA Gen 2) or Airflow 3, use the list below to trace the version progression of key dependencies. The list covers changes needed to get to Airflow 2.11.1. Take them into account when migrating from Airflow 2 (earlier than 2.11.1) to Airflow 3.
Composer 2.10.0 (Airflow 2.10.2)
- **Google Provider**: `10.26.0`
- **SSH Provider**: `3.14.0`
- **HTTP Provider**: `4.13.3`
- **Breaking Changes**: *Baseline for oldest fully documented source.*
Composer 2.15.3 (Airflow 2.10.5)
- **Google Provider**: `18.0.0`
- **SSH Provider**: `4.1.4`
- **HTTP Provider**: `5.3.4`
- **Breaking Changes**:
- **SSH Provider 4.0.0:** Hook `timeout` removed; `get_conn()` context
manager.
- **HTTP Provider 5.0.0:** `SimpleHttpOperator` -> `HttpOperator`.
- **Google Provider 11.0.0:** `BigQueryExecuteQueryOperator` removed.
- **Google Provider 12.0.0:** Legacy Data Pipeline operators removed.
- **Google Provider 13.0.0:** `AutoMLBatchPredictOperator` removed.
- **Google Provider 17.0.0:** `BigQueryCreateEmptyTableOperator` and
`BigQueryCreateExternalTableOperator` removed; Life Sciences operators removed.
- **Google Provider 18.0.0:** Legacy DV360 operators removed.
Composer 2.16.1 (Airflow 2.10.5)
- **Google Provider**: `19.0.0`
- **SSH Provider**: `4.1.6`
- **HTTP Provider**: `5.5.0`
- **Breaking Changes**: **Google Provider 19.0.0:** AutoML operators removed
(use Vertex AI).
Composer 2.17.0 (Target Airflow 2.11.1)
- **Google Provider**: **`20.0.0`**
- **SSH Provider**: **`5.0.0`**
- **HTTP Provider**: **`6.0.2`**
- **Breaking Changes**:
- **SSH Provider 5.0.0:** `sshtunnel` removed (native tunneling).
- **HTTP Provider 6.0.0:** JSON serialization.
- **Google Provider 20.0.0:** ADLS Gen2 migration.
2.2 Airflow 3 Migration
If migrating to Airflow 3 (MSAA Gen 3), note that this is a major version upgrade with significant changes, including:
- Decoupled Task SDK (imports change from `airflow` to `airflow.sdk`).
- Removal of direct metadata DB access.
- Renaming of `Dataset` to `Asset`.
- Removal of SubDAGs and SLAs.
- Changes to context variables availability.
Take into account all applicable changes within Airflow 2 (e.g. when migrating from Airflow 2.10.2, apply changes needed to move to Airflow 2.11.1 and Airflow 3 migration changes on top of that).
--------------------------------------------------------------------------------
Phase 3: Analysis & Remediation (Scanning Downloaded Files)
Run the scan commands from the root of your local workspace (`./migration_workspace` unless indicated otherwise).
--------------------------------------------------------------------------------
3.1 Airflow 2.11.1 Core & Dependency checks
Use these scans if migrating to Airflow 2.11.1+ (intermediate step when migrating to Airflow 3).
3.1.1 Dataset Scheduling (Airflow 2.11.0)
- **Change:** DAGs scheduled on datasets only trigger if events occur while
the DAG is unpaused.
- **Scan Command:** `grep -rn "Dataset(" ./dags`
- **Remediation:** You MUST document that these DAGs must remain unpaused to
catch events, or plan manual triggers for catch-up.
3.1.2 HTML in Descriptions (Airflow 2.11.0)
- **Change:** Raw HTML in DAG docs / params is escaped by default.
- **Scan Command:**
grep -rn -E "doc_md.*<|doc_md.*>|description.*<|description.*>" ./dags
- **Remediation:** Convert HTML to Markdown, or set
`AIRFLOW__WEBSERVER__ALLOW_RAW_HTML_DESCRIPTIONS=True` in target.
3.1.3 Teardown Tasks (Airflow 2.10.5)
- **Change:** Teardowns always run when a DAG is marked failed.
- **Scan Command:** `grep -rn "as_teardown" ./dags`
- **Remediation:** Ensure teardown tasks are idempotent.
3.1.4 Pendulum 3 Upgrade (Airflow 2.11.0)
- **Change:** `Period` renamed to `Interval`, testing helpers removed.
- **Scan Command (Code):**
grep -rn -E "pendulum\.Period|pendulum\.period" ./dags
- **Scan Command (Tests):**
grep -rn -E "\.test\(|set_test_now\(" ./tests 2>/dev/null || true- **Remediation:** Replace `Period` with `Interval`, and `period(...)` with
`interval(...)`.
--------------------------------------------------------------------------------
3.2 Path A: Airflow 2.11.1 Provider Package Scan
3.2.1 SSH Provider (SSH 4
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

