What problem does it solve? After every git push, developers must manually check whether GitHub Actions CI checks passed, wait for pending runs, and dig through logs when builds fail. This Skill automates that entire loop: it fetches check status, polls until completion, surfaces failing step logs, and can even fix common TypeScript, lint, or test failures. ## Core Features & Use Cases - Automatic CI Monitoring: Runs after every push to fetch and report pass/fail status for all GitHub Actions checks on a PR or branch. - Failure Diagnosis: Extracts the last lines of failed step logs and maps common errors (TS7006, ESLint violations, missing migrations) to concrete fixes. - Auto-Fix and Re-Verify: Applies minimal fixes to files in the current PR, commits, pushes, and re-runs the check to confirm the fix landed. - Use Case: You push a frontend branch and the build check fails with a TypeScript error. The Skill identifies the exact file and line, applies the type annotation fix, pushes the commit, and confirms all checks turn green. ## Quick Start Ask the assistant to check the build status for the current PR and wait until all CI checks complete.