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 structured workflow to locate failed checks, download the right logs or artifacts, pinpoint 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. - Log Retrieval Strategies: View failed step logs directly, download test 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 (network timeouts, disk space, Electron download failures) and flaky tests, then re-run failed jobs when appropriate. - Use Case: A PR shows a failing Linux integration test. Use this Skill to download the job log, grep for the ##[error] annotation, read the surrounding context, determine whether the failure relates to your changes, fix it, push, and watch the checks turn green. ## Quick Start Investigate why the CI checks are failing on my current pull request and help me fix the underlying issue.