Loading...
Loading...
Create a PR from current commits and/or local changes. Identifies base branch, creates topic branch if needed, commits changes, and opens a PR.
npx skill4agent add ag-grid/ag-charts pr-create.rulesync/skills/git-conventions/SKILL.mdhelpghghgh auth statusorigingit status
git log --oneline -10
git branch --show-current
git remote -vCURRENT_BRANCHbX.Y.Zgit log --oneline --decorate --all | head -30
git merge-base --is-ancestor origin/latest HEAD && echo "descends from latest"latestbX.Y.ZlatestBASE_BRANCHlatestbX.Y.Z${ARGUMENTS}AG-12345ag-12345/<descriptive-slug><initials>/<descriptive-slug>git config user.name${ARGUMENTS}git checkout -b <branch-name>latestbX.Y.Zgit diff
git diff --staged
git statusgit add -AAG-XXXX <description><description>git commit -m "$(cat <<'EOF'
<commit message>
EOF
)"git push -u origin <branch-name>ghgh pr create --base <BASE_BRANCH> --title "<title>" --body "$(cat <<'EOF'
<body>
EOF
)"AG-XXXX <description><description>PR created: <URL>
Base: <BASE_BRANCH> ← Head: <branch-name>
Title: <title>${ARGUMENTS}AG-12345--base <branch>/pr-create/pr-create AG-12345 Add tooltip delay support/pr-create Fix axis label overlap for long text/pr-create --base b13.0.0