
Yeet
OfficialFreeStreamline your GitHub workflow with a single command.
Free · Opens the source repo
What Yeet does
Yeet is a Bash skill designed to simplify the process of staging, committing, pushing, and opening a pull request on GitHub using the GitHub CLI (gh). It is particularly useful for developers who frequently interact with GitHub and want to streamline their workflow into a single command. By automating the steps involved in creating a pull request, Yeet minimizes the repetitive tasks that can slow down development.
To use Yeet, you must have the GitHub CLI installed and authenticated. The skill checks for the presence of gh and prompts the user to authenticate if necessary. Once set up, Yeet creates a new branch based on the description provided, stages changes, commits them with a terse message, and pushes the branch to the remote repository. It also intelligently discovers any existing pull request templates and adapts the pull request body accordingly, ensuring that all relevant information is included.
Yeet is ideal for developers who want to enhance their productivity by reducing the number of commands they need to run when working with GitHub. It is particularly beneficial for those who regularly create pull requests and want to ensure consistency in their commit messages and pull request titles. By adhering to a structured format for commit messages and pull request titles, Yeet helps maintain a clean and organized project history.
However, Yeet is not a substitute for understanding Git and GitHub. Users should still be familiar with basic Git operations and the implications of their changes. Additionally, Yeet may not be suitable for complex workflows that require more granular control over the commit and pull request process, as it automates many steps that might need manual intervention in certain scenarios.
When to use it
Use Yeet when you need to quickly stage changes, commit them, and open a pull request in a GitHub repository, especially when working on small to medium-sized updates.
When not to use it
Yeet may not be suitable for complex Git workflows or when detailed control over each step of the commit and pull request process is required.
What you can build with it
Quick Feature Addition
When you need to add a small feature, use Yeet to stage, commit, and open a pull request in one go.
Fixing a Bug
If you identify a bug and need to quickly push a fix, Yeet allows you to streamline the process without multiple commands.
Routine Updates
For regular updates to documentation or minor changes, Yeet simplifies the workflow, making it faster to contribute.
How to install Yeet
View source1. Install with the skills CLI
npx skills add openai/skills/yeet --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by openaiPrerequisites
- Require GitHub CLI
gh. Checkgh --version. If missing, ask the user to installghand stop. - Require authenticated
ghsession. Rungh auth status. If not authenticated, ask the user to rungh auth login(and re-rungh auth status) before continuing.
Naming conventions
- Branch:
{description}when starting from main/master/default. - Commit:
{description}(terse). - PR title:
{description}summarizing the full diff.
PR template discovery
Before creating the PR, resolve the repository root and look for the active GitHub PR template from there:
repo_root="$(git rev-parse --show-toplevel)"
Template candidates, in order:
.github/pull_request_template.md.github/PULL_REQUEST_TEMPLATE.md- One
*.mdfile under.github/pull_request_template/ - One
*.mdfile under.github/PULL_REQUEST_TEMPLATE/
Use paths as emitted from the repository root, such as .github/pull_request_template.md, not ./.github/pull_request_template.md.
If exactly one template is found, read it before composing the final PR body and pass it to gh pr create with --template "$template".
If multiple template files are found, stop before PR creation and ask which template to use. If no template exists, use the fallback body shape in this skill.
Workflow
- If on main/master/default, create a branch:
git checkout -b "{description}" - Otherwise stay on the current branch.
- Confirm status, then stage everything:
git status -sbthengit add -A. - Commit tersely with the description:
git commit -m "{description}" - Run checks if not already. If checks fail due to missing deps/tools, install dependencies and rerun once.
- Push with tracking:
git push -u origin $(git branch --show-current) - If git push fails due to workflow auth errors, pull from master and retry the push.
- Discover and read the repository PR template, if any.
- Check whether the current branch already has a PR:
gh pr view "$(git branch --show-current)" --json number,isDraft,url - If a PR already exists, update that PR in place. Do not create another PR, and do not change whether the existing PR is draft or ready for review.
- If no PR exists, open a new draft PR:
- With one template:
GH_PROMPT_DISABLED=1 GIT_TERMINAL_PROMPT=0 gh pr create --draft --fill --template "$template" --head "$(git branch --show-current)" - Without a template:
GH_PROMPT_DISABLED=1 GIT_TERMINAL_PROMPT=0 gh pr create --draft --fill --head "$(git branch --show-current)"
- With one template:
- Edit the PR title and body so they reflect the actual net change in the diff.
- Write the PR description to a temp file with real newlines and pass it via
--body-fileorgh pr edit --body-fileto avoid\n-escaped markdown.
Determining the PR
When updating a PR created earlier in the flow, infer the PR from the current branch when possible:
git branch --show-current
gh pr view "$(git branch --show-current)" --json number --jq '.number'
If this finds an existing PR, preserve its current review state. Never convert an existing ready-for-review PR back to draft as part of yeet; only new PRs created by this flow should start as draft.
PR Title
Format: <type>(<scope>): <subject>
<scope> is optional. A scope consist of a noun describing a section of the codebase (component, service or subsytem).
Example
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.
More Examples:
feat: (new feature for the user, not a new feature for build script)fix: (bug fix for the user, not a fix to a build script)docs: (changes to the documentation)style: (formatting, missing semi colons, etc; no production code change)refactor: (refactoring production code, eg. renaming a variable)test: (adding missing tests, refactoring tests; no production code change)chore: (updating grunt tasks etc; no production code change)
PR Body Contents
When invoked, use gh to edit the pull request body and title to reflect the contents of the specified PR. Make sure to check the existing pull request body to see if there is key information that should be preserved. For example, NEVER remove an image in the existing pull request body, as the author may have no way to recover it if you remove it.
When a repository PR template exists, adapt the final PR body to that template. Preserve meaningful headings, required checklists, and repo-specific prompts, but replace placeholder text with net-diff-specific content or N/A where the template asks for it. Do not discard template sections just because the fallback shape below is shorter.
It is critically important to explain why the change is being made. If the current conversation in which this skill is invoked has discussed the motivation, be sure to capture this in the pull request body.
The body should also explain what changed, but this should appear after the why.
Limit discussion to the net change of the commit. It is generally frowned upon to discuss changes that were attempted but later undone in the course of the development of the pull request. When rewriting the pull request body, you may need to eliminate details such as these when they are no longer appropriate / of interest to future readers.
Avoid references to absolute paths on my local disk. When talking about a path that is within the repository, simply use the repo-relative path.
Default to omitting Verification. Add it only when you have behavioral evidence worth preserving for reviewers: a reproduced bug, a before/after check, a targeted test that exercises the changed behavior, or a manual scenario with input and observed outcome. Do not use it for generic commands or automation results such as package tests, type checks, linters, formatters, pre-commit/pre-push hooks, or CI status.
If the repository template requires a validation or verification section, keep that section and avoid generic filler: include meaningful commands/results, a targeted manual scenario, or Not run with a reason.
Use professional Markdown:
- Put code, paths, commands, flags, and identifiers in backticks.
- Use fenced code blocks for shell transcripts or multi-line examples.
- Use GitHub permalinks when citing existing code relevant to the change.
- Reference relevant issues or related PRs, but do not reference the PR in its own body.
Suggested PR Body Shape
Use this as a fallback when the repository does not have a PR template:
## Why
Describe the user-facing or maintainer-facing problem, including cause and effect where useful.
## What Changed
Describe the net implementation change in concise prose.
Frequently asked questions about Yeet
Similar skills
Release Candidate Preparation
Streamline your OpenAI Agents release process.
Gitmoji
Generate expressive commit messages with emojis.
GitHub Release
Automate your GitHub library release process effortlessly.
Commit Message Storyteller
Generate meaningful commit messages from your git diffs.
Author Contributions
Trace author contributions across branches in Git.
Implementation Kickoff
Streamline your code implementation process with ease.
