pr-creator

Create GitHub pull requests and monitor CI until checks pass.

23|1|Updated Jan 7, 2026
One-click install
npx skills add https://github.com/neonwatty/claude-skills --skill pr-creator-neonwatty
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pr-creator
Source: https://github.com/neonwatty/claude-skills/tree/main/skills/pr-creator
Command: npx skills add https://github.com/neonwatty/claude-skills --skill pr-creator-neonwatty

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers waste time manually creating pull requests, aligning changes with CI, and diagnosing failing checks after each update.

Core Features & Use Cases

  • Branch management: automatically create a descriptive feature branch, stage changes, and commit with a conventional message.
  • PR orchestration: open pull requests on GitHub and link CI runs for traceability.
  • CI monitoring & fixes: watch CI runs, report failures, and guide iterative fixes until all checks pass.
  • Session recovery: persist progress across interruptions and resume monitoring.

Quick Start

Steps to start:

  • Ensure there are changes staged on a feature branch.
  • Trigger the pr-creator workflow to create a PR and start CI monitoring.
  • Review the PR once CI passes.

Frequently Asked Questions about pr-creator

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

FAQPage Schema
How do I automate pull request creation and CI monitoring in GitHub?

You can automate pull request creation by triggering a workflow that stages changes, commits, pushes a feature branch, opens a PR, and monitors CI runs until all checks pass. It relies on Git and GitHub CLI to orchestrate the process.

Can I automatically fix failing CI checks after opening a pull request?

Yes, CI monitoring tracks runs after PR creation, reports failures, and guides iterative fixes until all checks pass. It watches CI configurations and persists progress across session interruptions to resume monitoring.

How do I create a feature branch and commit changes automatically?

To create a feature branch automatically, trigger the workflow with staged changes. It handles branch creation, staging, and committing with a conventional message, then pushes the branch to GitHub without auto-merging.

Does this workflow preserve Git commit history without auto-merging?

Yes, the workflow preserves your Git commit history without auto-merging. It manages branch creation and staging linearly, ensuring your commit history remains intact when pushing to GitHub and opening a pull request.

Do I need GitHub CLI to monitor CI runs for pull requests?

Yes, you need GitHub CLI and Git installed to monitor CI runs for pull requests. The workflow relies on these tools and existing CI configurations in your repository to track runs and link them for traceability.