gh-create-pr
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Create Pull Request
Commit changes, push to remote, and create a pull request with a conventional commit-style title and comprehensive description: $ARGUMENTS
Current Repository State
- Git status: !
git status --porcelain - Current branch: !
git branch --show-current - Default branch: !
git rev-parse --abbrev-ref origin/HEAD 2>/dev/null | sed 's|origin/||' || echo main - Staged changes: !
git diff --cached --stat - Unstaged changes: !
git diff --stat - Recent commits on this branch: !
git log --oneline -10 - Existing PR for branch: !
gh pr view --json number,title,body 2>/dev/null || echo "No existing PR"