ワンクリックで
pr
Use when the user invokes /pr - pushes the current branch and creates a pull request
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when the user invokes /pr - pushes the current branch and creates a pull request
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user invokes /merge - merges the current PR, cleans up, and pulls the default branch
Use when the user invokes /commit - stages and commits current changes, creating a branch from main if needed via worktree
Use when working on the AGX CLI or its cloud-backed task/project workflows. Covers task lifecycle commands, project assignment, repo attachment with local analysis, daemon/board flows, and the wake-work-sleep execution model.
| name | pr |
| description | Use when the user invokes /pr - pushes the current branch and creates a pull request |
Push the current branch and open a pull request.
If there are staged/unstaged changes or untracked files, run the /commit workflow first (branch from default if needed, stage, commit). Then continue below.
git branch --show-current — current branchgit remote show origin 2>/dev/null | grep 'HEAD branch' — default branchgit log --oneline <default-branch>..HEAD — commits in this branchgit diff <default-branch>...HEAD — full diff against default branchgit push -u origin <branch>gh pr create --base <default-branch> --title "..." --body "..."## Summary
<1-3 bullet points>
## Test plan
<bulleted checklist>
Report the PR URL. Stop here — use /merge to merge it.