yeet

Automate Git staging, committing, and GitHub pull request creation via GitHub CLI.

467|42|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/mxyhi/ok-skills --skill yeet-mxyhi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: yeet
Source: https://github.com/mxyhi/ok-skills/tree/main/yeet
Command: npx skills add https://github.com/mxyhi/ok-skills --skill yeet-mxyhi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and assets (resource) components.

What problem does it solve?

This Skill automates the entire process of staging changes, committing them with a descriptive message, and opening a pull request on GitHub, streamlining the code review workflow.

Core Features & Use Cases

  • Automated Git Workflow: Manages branching, staging, committing, and pushing code.
  • GitHub CLI Integration: Leverages gh to create pull requests, including draft PRs with automatic filling of title and body.
  • Use Case: After making several related code changes, you can use this Skill to quickly prepare them for review without manually typing each Git command and gh command.

Quick Start

Use the yeet skill to prepare this branch for review by staging intended changes, writing a focused commit, and opening a PR.

Frequently Asked Questions about yeet

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

FAQPage Schema
How do I automate staging, committing, and opening a GitHub pull request?

You can automate the git workflow by using a skill that handles branch creation, stages all changes, commits with your description, pushes to origin, and opens a draft pull request via the GitHub CLI.

Do I need the GitHub CLI installed to automate pull request creation?

Yes, automating pull request creation requires the GitHub CLI (`gh`) to be installed and authenticated in your environment, because the skill leverages it to push branches and open draft pull requests.

Can I open a draft pull request automatically after pushing code changes?

Yes, you can open a draft pull request automatically by using a tool that pushes your committed code changes to the origin remote and then executes the appropriate GitHub CLI command to create the draft PR.

What is the best way to streamline a git code review workflow?

The best way to streamline a git code review workflow is to automate the sequential steps of staging changes, writing a focused commit message, pushing the branch, and opening a pull request with auto-filled details.

How does branch creation work when automating a git commit and pull request?

Automated branch creation works by generating a new branch, adding all current changes to staging, committing them with a user-provided description, and pushing that branch to the origin before opening the pull request.