commit-pr

Commit changes, push to a feature branch, and create a GitHub Pull Request.

1|Updated Jun 20, 2022
One-click install
npx skills add https://github.com/avvale/aurora-front --skill commit-pr-avvale
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: commit-pr
Source: https://github.com/avvale/aurora-front/tree/main/.claude/skills/commit-pr
Command: npx skills add https://github.com/avvale/aurora-front --skill commit-pr-avvale

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Commit, push changes, and create a Pull Request on GitHub.

Core Features & Use Cases

  • Commit & Push: Stage changes, commit with conventional messages, and push to a feature branch.
  • PR Creation: Open a Pull Request for review and collaboration on GitHub.
  • Use Case: When preparing a feature branch, run /commit-pr to streamline commits and PR creation.

Quick Start

Use the /commit-pr command to commit changes, push the branch, and create a pull request on GitHub.

Frequently Asked Questions about commit-pr

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

FAQPage Schema
How do I automate git commit and pull request creation on GitHub?

To automate git commit and pull request creation on GitHub, you can use a workflow command that stages changes, pushes to a feature branch, and opens a PR for review. This streamlines the entire software development submission process.

What is the best way to streamline commits and PR creation for a feature branch?

The best way to streamline commits and PR creation for a feature branch is issuing a single automation command that stages changes, applies conventional commit messages, pushes the branch, and generates PR metadata on GitHub for collaboration.

Do I need the gh CLI to automate pull request creation?

Yes, you need the gh CLI and git installed to automate pull request creation. The workflow relies on these dependencies to perform credentialed operations, push changes to GitHub, and generate PR metadata.

How does conventional commit message generation work during PR creation?

Conventional commit message generation works by automatically formatting staged changes into standardized commit messages before pushing to a feature branch. This ensures consistent git history and clean PR metadata for code review.

Can I push changes and open a pull request on GitHub in one step?

Yes, you can push changes and open a pull request on GitHub in one step by running an automation command that handles staging, committing, pushing to the feature branch, and creating the PR simultaneously.

Why does automated PR creation require credentialed git operations?

Automated PR creation requires credentialed git operations to authenticate with GitHub via the gh CLI, push commits to your feature branch, and generate PR metadata. Without proper credentials, the workflow cannot access your repository.