What problem does it solve? Long-running, multi-step pull request work often cannot finish in a single agent session, leaving half-done branches with no clear resume point. This Skill re-enters an interrupted PR created by om-auto-create-pr-loop, reconstructs the exact execution state, and drives the remaining work to completion without duplicating commits or opening a second PR. ## Core Features & Use Cases - State reconstruction: Reads HANDOFF.md, parses the authoritative Tasks table in PLAN.md, and resumes from the first row whose status is not done, with legacy format migration and --from overrides. - Safe concurrency: Claims the PR with a three-signal lock (assignee, in-progress label, claim comment), supports stale-lock recovery and --force takeover, and always releases the lock even on failure. - Lean execution discipline: Lands one commit per Step, batches verification into checkpoint passes every 5 Steps with integration tests and UI screenshots, and runs a full final gate plus an automated review pass before flipping the PR to complete. - Use Case: A 12-Step feature PR stalled at Step 7 when the session ended. Invoke this Skill with the PR number and it re-enters the worktree, lands Steps 7 through 12 with checkpoints, runs the validation gate and review pass, promotes the draft PR to ready, and posts a full summary comment. ## Quick Start Resume the unfinished work on pull request 1492 by running the om-auto-continue-pr-loop skill with that PR number.