From auto-mobile
Creates or edits GitHub PRs while preserving multiline formatting by writing the body to a file and using --body-file with gh.
How this skill is triggered — by the user, by Claude, or both
Slash command
/auto-mobile:gh-pr-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Preserve PR body formatting by writing the body to a file and passing that file to `gh`.
Preserve PR body formatting by writing the body to a file and passing that file to gh.
scratch/pr-body.md for PR text created in-session.gh pr create --title "..." --body-file scratch/pr-body.md.gh pr edit --body-file scratch/pr-body.md.--body "..." when multiline formatting matters.push-pr or other PR workflows, not as the top-level workflow by itself.Example:
cat <<'EOF_BODY' > scratch/pr-body.md
## Summary
- ...
## Testing
- ...
EOF_BODY
gh pr create --title "Your title" --body-file scratch/pr-body.md
npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobileCreates GitHub PRs via API without local git operations. Submit file changes for quick fixes, typos, config updates, or clean workflows bypassing local commits and branches.
Creates GitHub Pull Requests using GitHub CLI: detects existing PRs for branches, pushes changes, generates titles/bodies from commits. Handles monorepos/submodules. Use for /create-pr or PR/review requests.
Creates or updates pull requests with conventional commits using GitHub CLI or Graphite. Analyzes diffs, generates titles and descriptions, supports issue linking and Graphite stacks.