What problem does it solve? When a pull request's CI fails, developers must manually dig through GitHub Actions or Google Cloud Build logs to find the root cause. This Skill automates that investigation: it checks PR CI status, retrieves failure logs from either platform, analyzes the errors, and applies minimal fixes without breaking the PR's intent. ## Core Features & Use Cases - CI Status Inspection: Runs gh pr checks to identify failing jobs on the current branch's PR or a specified PR number/URL. - Dual Platform Support: Retrieves failure logs from GitHub Actions via gh run view --log-failed and from Google Cloud Build via gcloud builds describe and gcloud builds log, including project number to project ID resolution. - Wait Mode: Accepts a wait argument to watch in-progress CI runs with gh pr checks --watch before starting the fix flow, with a 10-minute timeout safeguard. - Use Case: You push a branch, CI fails on Cloud Build, and you ask the assistant to investigate. It extracts the build ID from the check URL, pulls the logs, identifies a failing test, checks out the PR branch, applies a minimal fix, and verifies it locally. ## Quick Start Ask the assistant to check the CI status of the current pull request, analyze any failures, and fix them without pushing.