What problem does it solve? Red CI checks on a pull request block merging, and manually reading logs, classifying failure types, and iterating on fixes is slow and error-prone. This Skill automates the full loop: fetch check status, classify each failure, apply the correct fix, push, and re-monitor until all checks pass. ## Core Features & Use Cases - Failure classification: Distinguishes check-title, package-check, branch-drift, lint/format, unit test, integration, macOS file I/O, security, and smoke failures, each with a targeted fix path. - Log-driven diagnosis: Fetches failing job logs via GitHub CLI or GitHub MCP tools, and separates PR-introduced failures from pre-existing failures on main. - Bounded fix-push loop: Rebases onto main for version drift, applies Biome format/lint fixes only to changed files, and caps standalone retries at 5 cycles before escalating. - Use Case: A PR shows red checks for a Biome format violation and a stale branch behind main. The Skill rebases onto origin/main, force-pushes with --force-with-lease, auto-formats the changed files, and waits for the next CI event instead of polling. ## Quick Start Monitor the CI checks on my open pull request, diagnose any failures, fix them, and re-push until everything is green.