What problem does it solve? When a pull request's CI checks fail, developers must manually dig through logs, identify root causes, apply fixes, and monitor re-runs. This Skill automates that entire loop: it locates the failing jobs, fetches their logs, classifies the failure, applies minimal code fixes, commits, pushes, and watches the re-run until all checks pass. ## Core Features & Use Cases - Automated failure triage: Uses gh pr checks and gh run view --log-failed to fetch only the failing step logs and classify each failure as fixable, environment-dependent, or flaky. - Guided fix workflow: Presents an analysis report for user confirmation before editing code, while auto-fixing trivial issues like formatting, lint violations, and import ordering without asking. - Full commit-to-green loop: Verifies fixes locally, commits with conventional message types, pushes, and polls CI status every two minutes, re-entering the analysis cycle if new failures appear. - Use Case: A developer opens a PR and sees the Build and Lint checks failing. They run the skill with the PR number, review the diagnosed TypeScript error and ESLint violation, approve the fix, and the skill commits, pushes, and confirms all checks turn green. ## Quick Start Ask the assistant to investigate and fix the failing CI on pull request 42.