From auto-mobile
Validates local changes, commits with repo-appropriate message, pushes current branch, creates or updates PR via GitHub CLI, and optionally enables automerge.
How this command is triggered — by the user, by Claude, or both
Slash command
/auto-mobile:SKILLpush-pr/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Push PR Use this when local work is ready to publish. - Prefer `push-pr` for one branch or one PR. - Prefer `push-my-prs` only when the user wants a batch loop across many PRs. ## Workflow 1. Inspect `git status --short`, `git diff --stat`, and recent commit style before drafting a commit. 2. Run the relevant validation before pushing. 3. Commit intentionally with a repository-appropriate message. 4. Push the current branch, setting upstream if needed. 5. If no PR exists, create one with `gh pr create` and a body file such as `scratch/pr-body.md`. 6. If a PR already exists, update it ...
Use this when local work is ready to publish.
push-pr for one branch or one PR.push-my-prs only when the user wants a batch loop across many PRs.git status --short, git diff --stat, and recent commit style before drafting a commit.gh pr create and a body file such as scratch/pr-body.md.gh pr edit.github-cli, gh-pr-workflow, and validate conventions.npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobile/prp-prCreates GitHub PR from current branch with unpushed commits. Discovers templates, analyzes changes/files, pushes branch, fills body. Optional base-branch (default: main).
/push-prCommits changes to a new branch if on main, pushes to origin, fills PR template with git diff details, and opens GitHub pull request.
/commit-push-prCommits current changes (staged/unstaged) to a new branch if on main, pushes to origin, and creates a GitHub pull request via gh.
/createCreates a Pull Request from current code changes: generates new branch, commits and pushes changes, creates PR via GitHub CLI preferring upstream if available.
/SKILLResolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.