What problem does it solve? After opening a pull request, developers must repeatedly poll CI status, diagnose failing checks, respond to review comments, and remember to merge—an error-prone manual loop that stalls delivery. ## Core Features & Use Cases - CI Failure Diagnosis: Identifies failing checks with gh pr checks and gh run view --log-failed, then guides reproduction and fixes for test, build, lint, typecheck, and flaky-test failures. - Review Thread Resolution: Queries unresolved review threads via the GitHub GraphQL API, evaluates each comment, replies in-thread, and resolves or defers feedback with tracking issues. - Gated Auto-Merge: Merges with gh pr merge --squash --delete-branch only when CI is green and no unresolved threads remain, respecting do-not-merge labels. - Use Case: After creating a PR for a bug fix, let the assistant watch the pipeline, fix a lint failure, reply to a CodeRabbit security comment, resolve the thread, and squash-merge once everything passes. ## Quick Start Monitor the CI checks and review feedback on my open pull request, fix any failures, and merge it when everything passes.