What problem does it solve? Pull requests often show red checks even when CI workflows pass, leaving developers unsure which check is blocking merge or what file to fix. This Skill traces failing PR checks to their exact root cause, whether they come from GitHub Actions or external providers like SonarCloud and CodeQL. ## Core Features & Use Cases - Check Triage: Lists every check attached to the PR head commit and separates github-actions checks from external app statuses. - Provider-Specific Playbooks: Includes dedicated diagnostic workflows for SonarCloud quality gates and CodeQL security results, querying provider APIs directly rather than relying on GitHub summaries. - Root Cause Mapping: Identifies the exact rule, severity, file, and line behind a failure and recommends the smallest correct fix. - Use Case: A PR is red even though the SonarCloud workflow job passed. The Skill queries the SonarCloud PR analysis, finds a vulnerability from rule githubactions:S8233 caused by workflow-level write permissions in .github/workflows/ci.yml, and recommends moving permissions to job level. ## Quick Start Ask the assistant to diagnose why your pull request is failing and identify which check is blocking merge and what file needs to change.