What problem does it solve? CodeRabbit sometimes replies to a pull request with a "Review limit reached" comment instead of an actual review, leaving the PR stuck. This Skill reads that comment, computes the real remaining cooldown from the comment's timestamp, waits it out, and re-triggers the review with @coderabbitai review. ## Core Features & Use Cases - Accurate cooldown calculation: Parses the comment's createdAt timestamp and stated cooldown (minutes or hours) to compute the true remaining wait, plus a safety buffer. - Non-blocking waits: Runs short waits as backgrounded shell commands and defers long waits to scheduling, so the conversation is never stuck idle. - Bounded retries: Caps re-trigger attempts at 3 per invocation and re-reads each new rate-limit comment fresh, avoiding infinite retry loops. - Use Case: A PR shows CodeRabbit's "Review limit reached" comment posted 8 minutes ago with a 15-minute cooldown. The Skill computes ~7 minutes remaining, sleeps in the background, then posts @coderabbitai review to unblock the review. ## Quick Start Check PR #42 for a CodeRabbit rate-limit comment and retry the review once the cooldown has elapsed.