This tackles the messy work of moving Apache Airflow 2.x DAGs to 3.x, where the biggest gotcha is that workers can no longer talk directly to the metadata database. It leans on Ruff's AIR rules to auto-fix imports and deprecated operators, then walks you through the manual stuff like replacing session.query calls with the Airflow Python client or REST API, updating context keys (execution_date is gone), and handling the switch from Datasets to Assets. The skill includes search patterns for ORM usage and provider_session decorators, plus a checklist for config changes and scheduling quirks. Honestly most valuable if you've got custom operators or task functions that touch the metadata DB, since that's where the breaking changes bite hardest.
npx skills add https://github.com/astronomer/agents --skill migrating-airflow-2-to-3