What problem does it solve? Red CI checks on a GitHub pull request block merges and require tedious manual investigation across logs, local environments, and commits. This Skill automates the full loop: identifying the PR, reading failing checks, reproducing failures locally, applying scoped fixes, pushing, and re-verifying CI. ## Core Features & Use Cases - PR and Failure Triage: Resolves the PR from a URL or the current branch using gh, groups failing checks by root cause, and classifies them as in-scope, stale-base, or out-of-scope. - Local Reproduction and Fix: Reads workflow files and repo configs to run the same commands CI runs, then applies minimal root-cause fixes without weakening checks or touching unrelated code. - Commit, Push, and Re-verify: Commits only the relevant files with a clear message, pushes to the PR head branch, watches checks with gh pr checks --watch, and reports a structured summary. - Use Case: A teammate's PR shows red GitHub Actions jobs for lint and unit tests. Invoke this Skill to pull the failing logs, reproduce the failures locally, fix the offending test and lint errors, push the commit, and confirm the checks turn green. ## Quick Start Fix the failing CI checks on the pull request for my current branch and push the fix.