agentsclimarketplace

Create pr

Skill Tsurai7/agentic-playbook/skills/create-pr

Create or update GitHub pull requests using gh. Use when the user asks for a PR, or to open/update a pull request after branch work is ready.From its SKILL.md

Install
npx -y skills add Tsurai7/agentic-playbook --skill create-pr

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.0 KB, 227 tokens by cl100k_base, as published. Nobody here has run it

Create pull request

Use gh for all GitHub PR tasks. The PR describes all commits on the branch since it diverged from base — not only the latest.

Before creating

Run in parallel:

  • git status — untracked files
  • git diff — staged and unstaged
  • Branch tracking vs remote (git status / git branch -vv)
  • git log and git diff [base]...HEAD — full branch history since diverging from base

Create PR

  1. Push if needed: git push -u origin HEAD (requires network permission)
  2. Create:
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
- ...

## Test plan
- [ ] ...

EOF
)"
  1. Return the PR URL to the user.

Rules

  • NEVER update git config
  • Push only the current branch; never force-push
  • Use HEREDOC for body formatting
  • Complete sentences in title and summary

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.