con un clic
pr
Use when the user invokes /pr - pushes the current branch and creates a pull request
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Use when the user invokes /pr - pushes the current branch and creates a pull request
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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.
Basado en la clasificación ocupacional SOC
| 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.