draft-pr

Create and push draft pull requests from GitHub feature branches.

2|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/brandonalfred/fortuna-app --skill draft-pr-brandonalfred
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: draft-pr
Source: https://github.com/brandonalfred/fortuna-app/tree/main/.claude/skills/draft-pr
Command: npx skills add https://github.com/brandonalfred/fortuna-app --skill draft-pr-brandonalfred

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Draft PRs save developers time by automating the initial PR creation process, ensuring consistent PR naming and workflow.

Core Features & Use Cases

  • Automated draft PR creation: from a feature branch, automatically open a draft PR with a descriptive title and summary.
  • Branch handling: ensures on a feature branch, creates a new branch if needed, and handles rebase or updates.
  • Use Case: A solo developer creates a feature branch, edits code, then uses the skill to push a draft PR for code review without triggering a formal PR.

Quick Start

Create a draft pull request from your current feature branch with a short description.

Frequently Asked Questions about draft-pr

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

FAQPage Schema
How do I automate creating a draft pull request from a feature branch?▼

To automate creating a draft pull request, you can use a skill that integrates git and the GitHub CLI to commit changes, push to origin, and invoke gh pr create --draft with a standardized description.

What is the benefit of opening a draft PR instead of a formal pull request?▼

Opening a draft PR allows developers to share feature branch changes for early feedback and code review without triggering a formal PR, ensuring consistent PR naming and saving time during the initial workflow.

Do I need the GitHub CLI to push a draft PR automatically?▼

Yes, you need the GitHub CLI installed because the automation invokes gh pr create --draft to open the draft pull request, alongside git for branch handling, committing, and pushing to origin.

Can I create a new git branch and push a draft PR at the same time?▼

Yes, the automation ensures you are on a feature branch and will create a new branch if needed before committing changes, pushing to origin, and generating the draft pull request.

Does the draft pull request automation handle branch rebasing and updates?▼

Yes, the automation handles branch rebasing and updates to ensure your feature branch is current before committing changes, pushing to origin, and invoking gh pr create --draft.