Skip to content

Claude Code Skill (Slash Command): push-and-pull-request.md

A Claude Code skill (slash command) to open a PR after committing all outstanding changes and pushing them.

Automation0saves0 views

Prompt

Full instructions — copy and paste into your model


allowed-tools: Bash(git add:), Bash(git status:), Bash(git commit:), Bash(git push:), Bash(gh pr create:*) description: Commit and push everything then open a PR request to main

Context

  • Current git status: !git status
  • Current git diff (staged and unstaged changes): !git diff HEAD
  • Current branch: !git branch --show-current
  • Recent commits: !git log --oneline -10

Your task

  1. Review the existing changes and then create a git commit following the conventional commit format. If you think there are more than one distinct change you can create multiple commits. If there are no outstanding changes proceed to 2.
  2. Push all commits.
  3. Open a PR to main following the conventional formats.