What problem does it solve? When a pull request's CI checks fail, developers must manually dig through workflow logs, identify the root cause, edit files, and push fixes. This Skill automates that entire loop: it inspects check statuses, retrieves failure logs, classifies errors, applies fixes, and commits the changes. ## Core Features & Use Cases - CI Status Inspection: Uses gh pr checks and gh run view --log-failed to locate failing checks and parse error logs tied to the PR head commit. - Error Classification and Fixing: Categorizes failures as test failures, lint errors, build errors, or type errors, then edits the affected files directly. - Safe Execution Modes: Supports --dry-run for analysis-only reports and --no-commit to skip committing, plus a repository mode when no PR exists. - Use Case: A teammate says "CI is failing on my PR, fix it." The Skill detects the failing lint and test jobs, reads the logs, corrects the offending code, commits with a Conventional Commits message in the PR's language, and pushes. ## Quick Start Ask the AI to check the CI status of the current pull request and automatically fix any failing checks.