What problem does it solve? When a Cloud Composer (Apache Airflow) pipeline fails, finding the root cause requires digging through scattered logs and verifying which DAG code actually ran remotely. This Skill guides a methodical, evidence-based Root Cause Analysis (RCA) so you fix the real problem instead of guessing. ## Core Features & Use Cases - Log-Based Evidence Gathering: Uses gcloud logging read with severity, DAG ID, and task filters to locate failures and stack traces. - Remote Code Verification: Downloads the actual DAG code from the environment's GCS bucket to confirm the remote version matches local files before analysis. - RCA Report Generation: Correlates log errors with exact code lines, proposes fixes, and produces a saved RCA report. - Use Case: Your daily_sales_agg DAG failed yesterday at 2pm. The Skill pulls the error logs, downloads the running DAG code, identifies a KeyError: 'region' at line 45, and recommends record.get('region', 'unknown'). ## Quick Start Ask the agent to troubleshoot why your Composer DAG failed and generate an RCA report, providing the DAG ID and approximate failure time.