원클릭으로
push-and-pr
Commit (if needed), push the current branch to origin, and generate a pull request description in the chat.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit (if needed), push the current branch to origin, and generate a pull request description in the chat.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Safe, project-wide remediation of a dangerous or incorrect code pattern using structured search and replace.
Run a multi-faceted code review on uncommitted changes using specialized review subagents.
Create an Architectural Decision Record (ADR) to document a design choice or technical strategy.
Run a multi-faceted code review on uncommitted changes using specialized review subagents.
Generate a session handoff document capturing the current working state for the next session.
Proactively audit GitHub Actions workflows and CI/CD logs for deprecations, stale runtimes, and missing best practices.
| name | push-and-pr |
| description | Commit (if needed), push the current branch to origin, and generate a pull request description in the chat. |
| metadata | {"author":"cascadian-gamers","version":"1.0"} |
Commit (if needed), push the current branch to origin, and generate a pull request description in the chat.
origin/master (or the primary base branch). If it contains unrelated commits from other features, warn the user and offer to rebase onto a fresh branch from origin/master.git push --dry-run origin <branch>.403 Permission Denied occurs:
fork remote (git remote -v).fork and create a cross-repository PR.git status — if there are uncommitted changes, ask the user if they want to commit first.origin or fork)..github/PULL_REQUEST_TEMPLATE.md.git log develop..HEAD --oneline and git diff develop --stat to understand the scope of changes.https://github.com/khodo-lab/extralife/pull/new/<branch>main or develop directly.main or develop, STOP and ask the user to create a feature branch first. Do not proceed.gh pr create to create the PR directly on GitHub. CRITICAL: Do not pass the markdown body directly via the --body argument, as complex strings cause bash escaping failures. You MUST write the generated PR description to a temporary file (e.g., .github/PR_BODY.md), run gh pr create --body-file .github/PR_BODY.md ..., and then delete the temporary file. Only fall back to displaying the PR description in chat if gh CLI is not installed or the user explicitly asks for a preview.gh pr create: Run gh auth status to verify the token has PR creation scope. If it returns 403 or "Resource not accessible", tell the user: "gh auth needs re-login — run gh auth login in your terminal, then I'll retry." Do NOT attempt to use the runner PAT from SSM for PR creation — it lacks the required scope.