Create pull requests with structured description
Scanned 9/12/2026
Install to Claude Code
npx -y skills add dirien/yet-another-agent-harness --skill pr --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pr?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dirien-yet-another-agent-harness)More formats (shields.io, HTML) on the badges page.
---
name: pr
description: "Create pull requests with structured description"
---
# /pr — Pull Request Creation
## When to use
When the user runs /pr or asks to create a pull request.
## Steps
1. Run `git log --oneline main..HEAD` to understand all commits
2. Run `git diff main...HEAD` to see the full diff
3. Check if the branch is pushed: `git rev-parse --abbrev-ref --symbolic-full-name @{u}`
4. If not pushed, push with `git push -u origin HEAD`
5. Create the PR using `gh pr create` with:
- Title: short, under 70 chars
- Body using the template:
## Summary
<1-3 bullet points>
## Test plan
- [ ] Tests pass
- [ ] Manual verification
## Rules
- NEVER force push
- Analyze ALL commits, not just the latest
- Keep the title concise — details go in the body
- Return the PR URL to the user when done
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!