What problem does it solve? Interrupted or externally created pull requests often stall with no clear way to finish them: the original plan is missing, the worktree is gone, and nobody knows which steps remain. This Skill re-enters any open PR, reconstructs or locates its execution plan, and drives it to completion under the same validation, review, and labeling discipline as a freshly created pipeline PR. ## Core Features & Use Cases - Plan-based resume: Locates the tracking plan linked in the PR body, parses its Progress checklist, and resumes implementation from the first unchecked step in an isolated git worktree. - PR adoption: When a PR has no execution plan (a human's PR or a crashed run), it reconstructs the goal from the PR description, comments, review feedback, linked issues, and diff, then commits a real plan before continuing. - Concurrency-safe claiming: Uses a three-signal in-progress check (assignee, label, claim comment) with stale-lock recovery and --force override so multiple agents never clobber each other. - Use Case: A nightly automation run crashed halfway through PR #1492. Run /ot-auto-continue-pr 1492 and the agent re-claims the PR, resumes from the first unchecked plan step, runs the full validation gate and an autofix review pass, then flips the PR from draft to ready. ## Quick Start Ask the agent to resume pull request 1492 by running /ot-auto-continue-pr 1492 and let it finish the remaining plan steps.