# 1gy Jpp Creating Pull Requests

> Pre-check

- Skill: `tomevault-io/1gy-jpp-creating-pull-requests` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/1gy-jpp-creating-pull-requests`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/1gy-jpp-creating-pull-requests/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/1gy-jpp-creating-pull-requests

---


# Pre-check

```bash
git branch --show-current
git status
git log --oneline <main-branch>..HEAD  # Check CLAUDE.md for main branch name
```

# Push to Remote

```bash
git push -u origin <branch-name>
```

# PR Description Format

```markdown
## Summary

- [Change 1]
- [Change 2]

## Test plan

- [ ] [Test item 1]
- [ ] [Test item 2]
```

# Create PR

```bash
gh pr create \
  --title "<title>" \
  --body "$(cat <<'EOF'
## Summary

- Changes...

## Test plan

- [ ] Test items...
EOF
)"
```

# Options

| Option | Usage |
|--------|-------|
| `--draft` | Draft PR |
| `--base <branch>` | Target branch |
| `--assignee @me` | Self-assign |
| `--label <label>` | Add label |

# Completion Report

- PR URL
- Title
- Target branch

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/1gy) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

