What problem does it solve? Failing pull request checks block merges and waste time when developers must manually dig through CI logs to find the first actionable error. This Skill automates the loop of inspecting failed checks, extracting the root error, applying a focused fix, and re-validating until the branch is green. ## Core Features & Use Cases - PR Check Inspection: Uses gh pr checks as the source of truth to identify failing jobs, workflows, and external check links. - Iterative Focused Fixes: Extracts the first actionable error from GitHub Actions logs and applies the smallest safe fix, one failure at a time. - Guarded Push Behavior: Only pushes and re-checks CI when the user explicitly requested CI repair or approved pushing, and never bypasses hooks or force-pushes. - Use Case: A pull request shows three failing checks. The Skill inspects the logs, finds a lint error, fixes it, re-runs local validation, and reports the current CI status with the next action. ## Quick Start Ask the assistant to investigate why the current pull request checks are failing and fix them one at a time until CI is green.