Create pr
Portable playbook for coding agents: always-on principles, user rules, and triggered skills.
npx -y skills add Tsurai7/agentic-playbook --skill create-prAssembled 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
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.
SKILL.md
1.0 KB, 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 filesgit diff— staged and unstaged- Branch tracking vs remote (
git status/git branch -vv) git logandgit diff [base]...HEAD— full branch history since diverging from base
Create PR
- Push if needed:
git push -u origin HEAD(requires network permission) - Create:
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
- ...
## Test plan
- [ ] ...
EOF
)"
- 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