بنقرة واحدة
push
Push current branch to origin and create/update the pull request with accurate title/body and validation notes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Push current branch to origin and create/update the pull request with accurate title/body and validation notes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Rebase current branch on top of latest origin/main (and latest remote branch tip) while resolving conflicts cleanly.
Write and refine implementation tickets into loop-friendly, verifier-first units for any software project. Use when asked to decompose large initiatives, rewrite ticket plans, or review ticket quality for clarity, testability, and minimal coupling.
Engineering principles for durable fixes: eliminate root causes, prefer simplification, and apply abstractions only when they reduce complexity.
Use the `ag` CLI to inspect and mutate workspace/ticket state from terminal.
Fetch and summarize active pull request review feedback with `gh` (inline review comments, review decisions, and PR discussion comments) for the current branch.
Rebase the current branch onto a target base branch and resolve conflicts safely while preserving intended behavior.
| name | push |
| description | Push current branch to origin and create/update the pull request with accurate title/body and validation notes. |
git push -u origin HEADpull skill (rebase-based), then push again.git push --force-with-lease origin HEAD only when history was intentionally rewritten.branch=$(git branch --show-current)
git push -u origin HEAD
# If needed after intentional rewrite
# git push --force-with-lease origin HEAD
pr_state=$(gh pr view --json state -q .state 2>/dev/null || true)
pr_title="<clear title>"
pr_body="<what changed, why, validation>"
if [ -z "$pr_state" ]; then
gh pr create --title "$pr_title" --body "$pr_body"
else
gh pr edit --title "$pr_title" --body "$pr_body"
fi
gh pr view --json url -q .url
--force.