What problem does it solve? Debugging failing pull request checks requires manually digging through GitHub Actions logs, which is slow and repetitive. This Skill automates locating failing checks, fetching their logs, and summarizing the failure so you can move straight to planning a fix. ## Core Features & Use Cases - Automated Check Inspection: Uses the GitHub CLI (gh) to list PR checks, detect failures, and extract run and job IDs from details URLs. - Log Retrieval with Fallbacks: Fetches run logs via gh run view --log and falls back to the job logs API when runs are still in progress, then extracts a focused failure snippet around error markers. - Plan-Before-Fix Workflow: Summarizes failures, drafts a fix plan (optionally via a create-plan skill), and implements changes only after explicit approval. - Use Case: A PR shows red checks before merge. Run the bundled script to get each failing check's name, run URL, and a concise log snippet, then approve a targeted fix plan. ## Quick Start Ask the assistant to inspect the failing GitHub Actions checks on the current pull request, summarize the root cause, and propose a fix plan before making any changes.