What problem does it solve? Failing pull request checks in GitHub Actions require manually digging through run pages and logs to find the root cause. This Skill automates that inspection: it resolves the PR, identifies failing checks, pulls the relevant GitHub Actions logs, and extracts a focused failure snippet so you can diagnose and fix the issue faster. ## Core Features & Use Cases - Automated Check Inspection: Runs gh pr checks with field-drift fallbacks to list failing checks for a PR number, URL, or the current branch. - Log Retrieval and Snippet Extraction: Fetches run logs via gh run view --log, falls back to per-job logs through the GitHub API when runs are still in progress, and extracts a failure-centered snippet. - Structured Output for Automation: Emits JSON with --json and exits non-zero while failures remain, so it can gate CI-fix automation loops. - Use Case: A PR shows three red checks. Run the bundled script to get each failing check's name, run URL, and a concise error snippet, then propose a focused fix plan before touching any code. ## Quick Start Ask the assistant to use the gh-fix-ci skill to inspect the failing GitHub Actions checks on the current pull request, summarize the root cause, and propose the smallest viable fix.