What problem does it solve? Debugging failing pull request checks requires manually digging through GitHub Actions logs, which is slow and error-prone. This Skill automates locating failing checks, fetching their logs, and summarizing the failure context so you can plan and apply a fix with explicit approval. ## Core Features & Use Cases - Automated Check Inspection: Uses the GitHub CLI (gh) to list PR checks, identify 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. - Approval-Gated Fixes: Summarizes failures, drafts a fix plan (optionally via a create-plan skill), and only implements changes after explicit user approval. - Use Case: A PR shows three failing checks. Run the bundled script to get each failing check's name, run URL, and a concise error snippet, then approve a plan to fix the root cause and re-run gh pr checks to confirm. ## Quick Start Ask the agent to inspect the failing checks on the current pull request and propose a fix plan before making any changes.