coderabbit-resolver

Installation
SKILL.md

<essential_principles>

How This Skill Works

Automates the iterative CodeRabbit review loop on a GitHub PR until all review comments are resolved and CI is green, then merges and cleans up.

Principle 1: GraphQL-Only Thread Resolution

GitHub has NO REST API for resolving review threads. You MUST use the GraphQL resolveReviewThread mutation with PRRT_-prefixed thread IDs. The mutation is idempotent — safe to call on already-resolved threads.

Principle 2: Iterative Loop Until Clean

The workflow runs in a loop:

  1. Extract unresolved CodeRabbit review comments
  2. Fix code issues OR resolve already-fixed threads
  3. Commit → Push → Wait for CI + CodeRabbit re-review
  4. Repeat until: zero unresolved threads AND all CI checks pass AND CodeRabbit check on current HEAD is completed + success

Principle 3: Validation Before Every Push

Related skills
Installs
34
GitHub Stars
1
First Seen
Feb 13, 2026