What problem does it solve? When CI checks fail on a pull request, finding the actual error means digging through thousands of lines of GitHub Actions logs. This Skill provides a systematic workflow to locate failed checks, download the right logs, extract the root cause, and iterate on a fix without guesswork. ## Core Features & Use Cases - Failed check discovery: Identify the PR for the current branch, list failed checks, and extract run and job IDs from check URLs using the gh CLI. - Log retrieval strategies: View failed step logs directly, download log and crash-dump artifacts, or fetch per-job logs via the GitHub API while a run is still in progress. - Failure triage: Distinguish real code regressions from infrastructure issues (npm registry errors, disk space, Electron download failures) and flaky tests, then re-run or fix accordingly. - Use Case: A PR shows a red check on the Linux integration test job. Use this Skill to pull the job log, grep for ##[error], find the assertion failure, fix the code, push, and watch the checks turn green. ## Quick Start Ask the assistant to investigate why the CI checks are failing on my current pull request and help me fix the underlying issue.