Install
~/.claude/skills/git-pr/SKILL.mdCreate a pull request for the current branch: 1. Check `git status` and `git diff` for changes 2. Generate conventional commit message (feat/fix/chore/refactor/docs) 3. Create commit with the message 4. Push branch to remote 5. Create PR via `gh pr create` with: - Title from commit message - Body with: Summary, Changes list, Test plan 6. If $ARGUMENTS contains a Notion task reference, include link in PR body If no branch exists, create one from the commit message (e.g., `feat/add-auth`).
Definition
Create a pull request for the current branch:
- Check
git statusandgit difffor changes - Generate conventional commit message (feat/fix/chore/refactor/docs)
- Create commit with the message
- Push branch to remote
- Create PR via
gh pr createwith:- Title from commit message
- Body with: Summary, Changes list, Test plan
- If $ARGUMENTS contains a Notion task reference, include link in PR body
If no branch exists, create one from the commit message (e.g., feat/add-auth).