om-auto-continue-pr

Resumes unfinished pull requests from their execution plan in an isolated git worktree.

1|Updated Apr 23, 2026
One-click install
npx skills add https://github.com/tkogut/agents-os-core --skill om-auto-continue-pr-tkogut
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: om-auto-continue-pr
Source: https://github.com/tkogut/agents-os-core/tree/main/global_skills/om-auto-continue-pr
Command: npx skills add https://github.com/tkogut/agents-os-core --skill om-auto-continue-pr-tkogut

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

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.

Frequently Asked Questions about om-auto-continue-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I resume an unfinished pull request automatically?▼

Run /om-auto-continue-pr with the PR number. The Skill claims the PR, creates an isolated git worktree from the PR head, finds the tracking plan, and resumes from the first unchecked Progress step through validation and review.

Can it resume a pull request that has no execution plan?▼

Yes. When no tracking plan exists, the adoption procedure reconstructs the goal from the PR description, comments, review feedback, linked issues, and diff, commits a real plan to the branch, and continues. Use --adopt ask, auto, or off to control this.

What happens if another agent is already working on the PR?▼

A three-signal check (assignee, in-progress label, recent claim comment) detects live locks and stops the run. Stale locks older than 60 minutes can be recovered, and --force takes over with an explicit override comment naming the previous owner.

Does it work with pull requests from forks?▼

Yes, cross-repository PRs are checked out via the tracker's checkout-pr operation. If the fork head cannot be pushed because maintainer edits are disabled, the plan is delivered as a PR comment and the blocker is reported instead of failing silently.

When should I not use this Skill on a PR?▼

Avoid it when a PR's diff touches only spec or design files while remaining plan steps are implementation work; the Skill stops and hands off to om-auto-implement-spec so implementation ships on its own PR.