agentsclimarketplace

Create pr

Skill to4iki/skills/engineering/create-pr

A collection of agent skills.

Install
npx -y skills add to4iki/skills --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.

What its author says it does

Copied from the file, not written here

Push the branch and open a pull request with gh. Use when the user asks to create a PR, open a pull request, or push and create a PR. Create a draft PR only when the user explicitly requests draft.

SKILL.md

1.2 KB, 274 tokens by cl100k_base, as published. Nobody here has run it

Create PR

Run only when the user asks to create a PR. Do not stage or commit. Write the title and body in English (Japanese only if the user explicitly asks).

Procedure

  1. Inspect changes in parallel (base = default branch; if main is missing, resolve with git symbolic-ref refs/remotes/origin/HEAD):
    • git log $(git merge-base HEAD <base>)..HEAD --oneline
    • git diff $(git merge-base HEAD <base>)..HEAD --stat
  2. Draft title and body. Follow .github/pull_request_template.md if present. Otherwise:
## Summary
<brief description>

## Changes
- <change>

## Related Issues / Links
- Fixes #<issue-number>
  1. git push -u origin <branch_name>
  2. Create (pass --draft only when the user explicitly asks for a draft):
gh pr create [--draft] --title "<title>" --body "$(cat <<'EOF'
<body>
EOF
)"
  1. Report the PR URL

Gotchas

  • If gh is missing or unauthenticated, stop and ask the user to set it up
  • If the push is rejected, stop and ask the user to resolve conflicts

Keep looking

Skills are one crate of 328,083. 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.