What problem does it solve? Investigating a failed GitHub Actions run normally means clicking through the web UI to find which job and step failed and then reading the logs. WebFetch cannot retrieve these logs (it only returns HTML), so this Skill uses the gh CLI through a deterministic script to reliably identify the failed workflow, job, and step, and extract only the failing step's logs. ## Core Features & Use Cases - Input resolution: Accepts run/PR/job URLs, run IDs, PR numbers, or defaults to the latest run on the current branch, resolving them to a concrete target. - Preflight summary: Reports authentication status, failed jobs and steps, and their conclusions (failure, cancelled, timed_out) in a structured digest. - Targeted log extraction: Uses gh run view --log-failed to fetch only the failing step's logs, avoiding context bloat from full logs. - Use Case: A teammate pastes a failing CI run URL and asks why the build broke. The Skill identifies the failed job and step, pulls the relevant log lines, cross-references the repository code, and proposes a fix in systematic-debugging Phase 4 format without applying changes automatically. ## Quick Start Paste the failing GitHub Actions run URL and ask the assistant to investigate why the CI failed and propose a fix.