원클릭으로
dev-rb
Rebase open PRs onto the default branch, resolve conflicts, and force push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rebase open PRs onto the default branch, resolve conflicts, and force push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
| name | dev-rb |
| description | Rebase open PRs onto the default branch, resolve conflicts, and force push. |
/dev-rb # all open PRs authored by me
/dev-rb <PR_URL> # only that PR
Sync: detect the default branch (git remote show upstream 2>/dev/null | sed -n 's/.*HEAD branch: //p', fallback to main), checkout it and run git sync.
Pick PRs:
<PR_URL> arg, operate on that PR only.gh pr list --author "@me" --state open --json number,headRefName.For each PR branch:
git checkout <branch> and git rebase <default>.git add them, git rebase --continue. Never git rebase --skip. If a conflict is not safely resolvable, abort that branch with git rebase --abort and report it.git push origin <branch> --force-with-lease.Checkout the default branch when done.
Report one line per PR: clean / resolved conflicts / skipped.
--force-with-lease, never plain --force.Review Airflow UI code for consistency, best practices, and conventions.
Develop Airflow UI features from an issue link or text description.
Generate a concise PR changelog summary from the current branch diff.
Generate a Google Slides presentation from a paper PDF URL using gws CLI.
Set up git aliases.
Address PR review comments, fix valid ones and draft replies for invalid ones.