work-with-pr

Orchestrate a complete PR lifecycle from worktree setup through gated verification until merge.

Updated Mar 24, 2026
One-click install
npx skills add https://github.com/1thirteeng3/greenmoire --skill work-with-pr-1thirteeng3
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: work-with-pr
Source: https://github.com/1thirteeng3/greenmoire/tree/main/integrations/oh-my-openagent/.opencode/skills/work-with-pr
Command: npx skills add https://github.com/1thirteeng3/greenmoire --skill work-with-pr-1thirteeng3

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill orchestrates a complete PR lifecycle from isolated worktree setup through PR creation and an unbounded verification loop until the PR is merged, reducing toil and human error.

Core Features & Use Cases

  • Automates: setup of isolated worktrees, structured commits, PR creation, and gated verification (CI, review-work, Cubic) until merge.
  • Supports robust PR workflow: atomic commits, branch management, and automated iteration to pass all gates.
  • Use Case: Teams needing reproducible PR pipelines across multiple changes with automatic cleanup after merge.

Quick Start

Set up a clean worktree, implement the changes, push a branch, and iterate until CI, review-work, and Cubic all pass.

Frequently Asked Questions about work-with-pr

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

FAQPage Schema
How do I automate the pull request lifecycle from branch creation to merge?

Isolated worktree setup prevents modifications to your main branch during pull request development. It creates a separate working directory mapped to your feature branch, ensuring atomic commits and safe iterative verification without destabilizing the primary codebase.

What is the best way to manage code review gates in a CI pipeline?

Automated pull request verification iterates until CI, review-work, and Cubic gates pass. This unbounded loop automatically triggers subsequent checks after previous gates succeed, ensuring all criteria are satisfied before final merge.

How do I set up a git worktree for isolated branch management?

To set up a git worktree for isolated branch management, the Skill creates a clean workspace separate from your main branch, implements changes, pushes the branch, and iterates until all verification gates pass before merging.

Does the PR workflow support automatic cleanup after merge?

The verification loop runs unbounded iterations because CI, review-work, and Cubic gates may fail and require code changes. It automatically re-triggers checks after fixes until all automated and peer review criteria are satisfied.

What is an unbounded verification loop for pull requests?

An unbounded verification loop for pull requests iteratively runs CI, review-work, and Cubic gates until all checks pass. It continuously validates code changes against automated gates, ensuring the branch is fully verified before merging.

Can I use PR templating with automated branch management?

Yes, you can use PR templating with automated branch management. The Skill applies structured pull request templates alongside atomic commits and isolated worktree setup to maintain reproducible pipelines across multiple code changes.