From auto-mobile
Creates or edits GitHub PRs using gh CLI, preserving multiline body formatting by writing to scratch/pr-body.md and using --body-file.
npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobilegh-pr-workflow/# PR Creation Without Newline Mangling Preserve PR body formatting by writing the body to a file and passing that file to `gh`. - Prefer `scratch/pr-body.md` for PR text created in-session. - Create PRs with `gh pr create --title "..." --body-file scratch/pr-body.md`. - Update PRs with `gh pr edit --body-file scratch/pr-body.md`. - Avoid `--body "..."` when multiline formatting matters. - Treat this as a supporting skill for `push-pr` or other PR workflows, not as the top-level workflow by itself. Example:
/create-pull-requestProvides step-by-step GitHub CLI guide for creating pull requests, enforcing title conventions, template usage, best practices, and example commands.
/create-pull-requestCreates a draft GitHub pull request using gh CLI with conventional emoji-prefixed titles and body from .github/pull_request_template.md.
/SKILLConfigures Git user identity and project commit scopes: verifies name/email, initializes git-agent, validates scopes from .git-agent/config.yml, generates .claude/git.local.md.
/SKILLLaunches isolated code-context researcher agent to fetch repo/library context via DeepWiki, Context7, Exa, git clone, or all methods. Accepts repo URL/name and optional --method flag.
/SKILLCreates a GitHub pull request with automated quality validation, security scanning, issue linking, and compliance checks. Accepts optional description or issue reference.
/SKILLCreates executable implementation plans from design folders, decomposing specs into granular tasks via phased loop with user validation and git commit.
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