What problem does it solve? Manually polling GitHub Actions to check whether a CI build succeeded or failed wastes developer time and delays feedback. This Skill continuously monitors pipeline status, notifies you when the build completes, diagnoses failures, and can automatically retry failed runs. ## Core Features & Use Cases - Continuous Build Monitoring: Uses a persistent monitor on gh run list to track the latest workflow run until it reaches a completed state, without manual sleep-based polling. - Failure Diagnosis: Inspects run logs with gh run view --log and greps for errors, Gradle build details, and annotations to identify why a build failed. - Automatic Retry Handling: Reruns failed builds via gh run rerun or re-triggers PR builds, distinguishing between code errors and transient issues like stuck Gradle daemons. - Use Case: After pushing code that triggers a GitHub Actions workflow, ask the assistant to monitor the pipeline; you get notified when the build succeeds (with artifact info such as an APK) or a failure analysis with a retry option. ## Quick Start Ask the assistant to monitor the current CI pipeline and notify you when the GitHub Actions build succeeds or fails.