# pr-creator
> Create pull requests with summary from Ralph progress
- Author: barracoder
- Repository: barracoder/ralph-spike
- Version: 20260117140415
- Stars: 0
- Forks: 0
- Last Updated: 2026-02-06
- Source: https://github.com/barracoder/ralph-spike
- Web: https://mule.run/skillshub/@@barracoder/ralph-spike~pr-creator:20260117140415
---
---
name: pr-creator
description: Create pull requests with summary from Ralph progress
---
# pr-creator
Create a pull request after Ralph completes all stories.
## When to Use
Invoke this skill after outputting `COMPLETE` to create a PR summarizing the work.
## PR Creation
**Using GitHub CLI:**
```bash
# Ensure you're on the feature branch
BRANCH=$(git branch --show-current)
# Push if not already pushed
git push -u origin "$BRANCH" 2>/dev/null || git push
# Create PR
gh pr create \
--title "feat: [Project Name] - Ralph automated implementation" \
--body-file /dev/stdin <COMPLETE │
│ ↓ │
│ pr-creator skill → gh pr create │
│ ↓ │
│ cleanup skill → remove temp files │
└─────────────────────────────────────────────────────────────────┘
```
## Troubleshooting
| Issue | Solution |
| ---------------------- | ---------------------------------------- |
| `gh` not authenticated | Run `gh auth login` |
| No upstream branch | Script includes `git push -u origin` |
| jq not installed | Use manual PR template |
| Branch protection | PR will be created but may need approval |