Eventaservo Pull Request Creator
SkillDev toolsPrepares branches and commits, previews, then creates a GitHub pull request with `gh pr create` or updates title/body with `gh pr edit` when a PR already exists for the branch. PR descriptions are a short why-first executive summary in English (no technical changelog); emojis allowed. Use when the user asks to open or create a PR, update a PR description, or refresh pull request text. Follows Eventaservo AGENTS.md (Conventional Commits, English PR text, explicit confirmation before push or remote edits).
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Eventaservo Pull Request Creator skill
What this skill tells your AI
The instructions your AI receives, as published by eventaservo/eventaservo in .agents/skills/eventaservo-pr-creator/SKILL.md and read by ahel’s review.
You help the user open or update a GitHub Pull Request for the Eventaservo
repository using the GitHub CLI (gh).
Language
- This skill and all preview text you show for this flow are English only.
- The user may speak another language; PR title and body must still be English
(project convention per
AGENTS.md).
Prerequisites
ghinstalled and authenticated — if unsure, rungh auth status.- The user must explicitly ask to create or update a PR. Do not push, commit
for this purpose, or change GitHub without their yes after the preview
(
AGENTS.md: no branches, commits, or PRs without permission).
Workflow
1. Inspect the working tree
- Run
git statusand reviewgit diff(andgit diff --cachedif needed). - Exclude unrelated local changes from the PR scope (e.g. personal
config/environments/development.rbhost tweaks). Ask whether those files should be left unstaged or included.
2. Branch
- Do not commit on
main/ default production branch. Use a feature branch. - If the user is on the wrong branch, suggest a name such as
type/short-description-in-english(e.g.ci/improve-test-workflow).
3. Ruby style (if applicable)
- For
.rbfiles included in the PR, runbundle exec standardrb --fixon those paths before commit (AGENTS.md).
4. Tests in the diff
- If the change adds or restructures tests, read
TEST_ARCHITECTURE.mdbefore assuming layout or naming.
5. Commit message
- Use Conventional Commits in English (e.g.
feat:,fix:,chore:). - Optional body with short bullets is fine.
6. Detect an existing PR for this branch
- Do not push here. Pushing to
originhappens only after the user approves the preview (step 9), per prerequisites andAGENTS.md. - If the branch already exists on
origin(e.g.git rev-parse origin/<branch>succeeds, or equivalent), check for an open PR, e.g.:gh pr list --head <branch> --json number,url,title,state- or
gh pr view --branch <branch>if supported by the installedghversion.
- If the branch is not on
originyet, skip this lookup. In the preview, assume Create new PR unless the user says a PR already exists; after you push in step 9, run the sameghlookup again before choosinggh pr createvsgh pr edit. - If a PR exists, note its number, URL, and a short summary of current title/body.
7. Draft PR title and body
Title: Short, Conventional-Commits-style in English (e.g. ci: improve test workflow).
Body — executive summary, why-first
- Focus on why this PR exists: business or product context, problem, motivation, or decision — the reader must understand why we are doing this, not a catalog of what the PR implements.
- Do not make what the main topic. At most one optional high-level sentence may tie the why together — never replace the motivation or turn into a feature list.
- No technical changelog: no file lists, class names, endpoints, or implementation steps — the diff and commits already show that.
- Length: usually one short paragraph; two only if the second reinforces context or urgency of the why — never use the second paragraph as a changelog.
- Emojis: allowed in moderation when they support tone or context (e.g. motivation).
- Do not add long checklists or “How to test” unless the user explicitly asks.
8. Mandatory preview (English)
Show a full preview before any create/update:
**Branch:** <name> → **Base:** main (or user-specified)
**Action:** Create new PR | **Update existing PR #N**
**Proposed title:** ...
**Proposed body:**
---
[full body]
---
Proceed? (yes / edit / cancel)
- yes → continue to step 9
- edit → ask what to change, revise, show preview again
- cancel → stop; do not push or call
ghfor create/edit
9. Execute after yes
git add(scoped to agreed files),git commitif there are staged/uncommitted changes the user wants in the PR.git push -u origin <branch>if the remote is not up to date.- If step 6 was skipped because the branch was not on
originyet, run the PR lookup from step 6 now so you choose create vs edit correctly.
If no PR exists:
gh pr create --title "..." --body-file /path/to/body.md
Prefer --body-file for multiline bodies. Add --draft only if the user asked.
If a PR already exists:
- Run
gh pr edit <number> --title "..." --body-file ...when the summary or title should reflect the latest why or agreed wording. - If the user only wanted to ensure a PR exists and the narrative is unchanged, do not rewrite the body without need — state that in the preview (“ensure only”).
- Print the PR URL (created or updated).
For extra gh options (reviewers, base branch other than main, labels), see
gh pr create --help and gh pr edit --help.
After the PR is open
The user may run a follow-up review using the eventaservo-code-review skill when needed.
Signals
- GitHub stars
- 31
- Forks
- 8
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
eventaservo-pr-creator- Source
- github.com/eventaservo/eventaservo