From auto-mobile
Creates or edits GitHub PRs with gh CLI while preserving multiline body formatting via --body-file. Use as helper for workflows like push-pr needing formatted PR bodies.
npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobileThis skill uses the workspace's default tool permissions.
Preserve PR body formatting by writing the body to a file and passing that file to `gh`.
Creates 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.
Share bugs, ideas, or general feedback.
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