What problem does it solve? Open pull requests often stall mid-work: an automated run crashes, a human author stops halfway, or a PR arrives with no execution plan at all. This Skill resumes any open PR by claiming it safely, checking out its head in an isolated git worktree, picking up from the first unchecked step of its execution plan, and driving it to completion with validation, review, and label normalization. ## Core Features & Use Cases - Plan-based resume: Locates the tracking plan written by om-auto-create-pr, parses the Progress checklist, and continues from the first unchecked step with per-phase commits and pushes. - PR adoption: When a PR has no execution plan (human-authored or from another tool), 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: A three-signal in-progress check (assignee, in-progress label, recent claim comment) prevents agents from clobbering each other, with stale-lock recovery and --force override. - Use Case: A CI pipeline crashed after finishing phase 1 of PR #1492. Run the Skill with the PR number and it re-enters the worktree, resumes at phase 2, runs the full validation gate, executes the om-auto-review-pr --autofix pass, and flips the PR from draft to ready. ## Quick Start Ask the agent to resume pull request 1492 by running /om-auto-continue-pr 1492 and let it finish the remaining plan steps.