What problem does it solve? When CI checks fail on a pull request, finding the actual cause means digging through GitHub Actions runs, job logs, and artifacts. This Skill provides a structured workflow to locate failed checks, download the right logs, extract the real error, and determine whether the failure is caused by your code or by infrastructure flakiness. ## Core Features & Use Cases - Failed Check Discovery: Identify the PR for the current branch, list all checks, and filter to failed ones with gh pr checks. - 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 Classification: Distinguish code-caused failures from infrastructure issues (npm registry errors, Electron CDN failures, disk space, timeouts) and flaky tests, with guidance to re-run jobs instead of changing code. - Use Case: A PR shows a failing "Linux / Electron" integration test. Use this Skill to download the logs-linux-x64-electron-1 artifact, inspect exthost.log for the assertion failure, fix the code, push, and watch the checks turn green. ## Quick Start Find the failing CI checks on my current pull request, download the logs, tell me the root cause, and help me fix it.