What problem does it solve? Failing CI pipelines block pull requests and waste engineering time on manual log digging. This Skill automates the diagnosis of failing GitHub Actions runs, classifies the root cause, and implements verified fixes so developers can get builds green again without guesswork. ## Core Features & Use Cases - Failure Identification: Accepts a PR URL or Actions run URL and uses the GitHub CLI to enumerate failing jobs and steps with their logs. - Root Cause Classification: Categorizes each failure into one of nine types (build, lint, test, flaky, dependency, CI config, infra, migration, test mismatch) with a priority-ordered decision table. - Verified Fix Workflow: Reproduces failures locally in a worktree, applies a minimal fix, confirms the check passes, then pushes with conventional commits and re-triggers the run. - Use Case: A teammate pastes a PR link whose checks are red. The Skill pulls the failing job logs, identifies a lockfile sync error (R5), runs corepack pnpm install, commits the updated lockfile, and reports the fix with a link to the re-run. ## Quick Start Paste a failing GitHub PR or Actions run URL and ask the assistant to diagnose and fix the CI failure.