What This Skill Does
One-command workflow: stage all changes, commit with a message, push to remote, and open a GitHub pull request. Uses gh CLI for the PR step.
When to Use It
- You want to go from local changes to an open PR in one shot
- Quick iteration cycles where you commit-push-PR frequently
- The branch is ready for review and you want to skip the ceremony
Workflow
# Stage everything, commit, push, open PR
yeet "Your commit message"
Requirements
ghCLI authenticated (gh auth status)- Git repository with a remote configured
- Changes to commit
Best Practices
- Write meaningful commit messages even in quick flows
- Review staged changes before yeeting
- Use for feature branches, not main/master