What problem does it solve? Keeping a repository's CI green requires constant polling of GitHub Actions runs across main and every open pull request, which blocks the session and wastes attention. This Skill arms a persistent background monitor that reports failures and merge-ready PRs as events, so work continues while CI runs. ## Core Features & Use Cases - Background CI monitoring: Arms a persistent Monitor over scripts/watch-ci.sh that polls every 75 seconds and emits one line per newly failed run, mergeable PR, or final tally. - Failure triage guidance: Provides commands to open failed runs, fetch job logs via the GitHub API, and diagnose whole-run failures together before fixing. - Merge readiness probing: Detects PRs whose latest push and pull_request workflow runs are all terminal and none failed, then routes them to the /auto-merge skill. - Use Case: After pushing a branch and opening a PR, invoke the watch to keep tracking CI across main and all open PRs, get notified of a red deploy run, diagnose the failing job log, fix the right layer, and push once until every check is green. ## Quick Start Watch the builds on this repository and keep every branch green until all CI checks pass.