skilly. Buy ad slot
All skills
Devops · Writing / AGENT SKILL

pr

dirien/yet-another-agent-harness
0 installs 20 GitHub stars
0

Create pull requests with structured descriptions.
Create pull requests with structured description

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# /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