What problem does it solve? When pull request checks go red, developers must manually dig through GitHub Actions logs, categorize each failure, and coordinate fixes — a slow, error-prone process. This Skill automates that triage: it detects failing checks, fetches logs and annotations, classifies each failure, and delegates fixes while enforcing rules like never skipping tests. ## Core Features & Use Cases - Failure Detection & Log Retrieval: Queries PR check runs via the GitHub CLI, fetches annotations and workflow job logs, and detects base-branch merge conflicts that silently block CI from running. - Failure Categorization: Classifies each failure as test, build, lint/format, security, flaky, or infrastructure, with a defined action per category. - Delegated Fixing with Guardrails: Delegates root-cause fixes to the coder skill, batches all fixes into a single push, and forbids test skipping or lint suppression. - Use Case: After pushing code to a PR, the tests and lint checks fail. Invoke this Skill to fetch the failure logs, fix the assertion error and formatting issues, push once, and report a summary table of resolutions. ## Quick Start Resolve the failing CI checks on my current pull request and push the fixes.