From devx-git
Creates GitHub pull requests using gh CLI. Verifies clean working tree, analyzes commits/diffs since base branch (default main), pushes branch, generates title/body template, returns PR URL. Triggered by /pr or PR requests.
npx claudepluginhub agentic-dev3o/devx-plugins --plugin devx-gitThis skill is limited to using the following tools:
Accept an optional base branch argument (default: `main`).
Creates and manages GitHub pull requests using GH CLI: prepares branches, reviews diffs/commits, pushes, writes titles/descriptions, requests reviewers/labels, handles feedback, merges, and cleans up. Use for feature/fix branch reviews.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Accept an optional base branch argument (default: main).
git status
git log and git diff <base>...HEADgit push -u origin HEADgh pr create --title "<type>: <concise title>" --body "$(cat <<'EOF'
## Summary
- <1-3 bullets focusing on WHY, not what>
## Test plan
- [ ] <verification steps>
EOF
)"
-i)--force or --force-with-lease when pushing