ワンクリックで
merge
Use when the user invokes /merge - merges the current PR, cleans up, and pulls the default branch
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when the user invokes /merge - merges the current PR, cleans up, and pulls the default branch
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user invokes /pr - pushes the current branch and creates a pull request
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 | merge |
| description | Use when the user invokes /merge - merges the current PR, cleans up, and pulls the default branch |
Merge the PR for the current branch, clean up, and pull latest.
/commit workflow first.gh pr view fails), run the /pr workflow first.git branch --show-current — current branchgit remote show origin 2>/dev/null | grep 'HEAD branch' — default branchgh pr view --json state,mergeable,title — PR statusgh pr merge --squash --delete-branchIf in a worktree (parent repo exists at ../<original-repo>):
cd back to the original repo directorygit worktree remove ../<worktree-dir>git checkout <default-branch> && git pullIf in the main repo:
git checkout <default-branch> && git pullgit branch -d <branch> (if not already deleted by --delete-branch)Confirm clean state with git status.