Generating Pull Requests
SkillDev toolsLets your agent create pull requests following required steps every time it opens one.
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 Generating Pull Requests skill
About this capability
MANDATORY skill for ALL pull requests. Must be used EVERY TIME before creating any pull request. No exceptions.
What this skill tells your AI
The instructions your AI receives, as published by ossappscollective/oss-documentscanner in .claude/skills/open-pr/SKILL.md and read by ahel’s review.
Mandatory Process
--auto (caller runs autonomously): skip step 0 sign-off and any push/PR approval wait — proceed directly. Still fix push-hook errors, still --draft.
- ALWAYS ensure the change was verified before opening the PR. For logic changes this means the relevant Vitest tests pass (
npx vitest run <path>) andyarn svelte-checkis clean; for UI/behavioral changes, confirm it by running the app (ns run ios/ns run android), or — when a native run isn't possible — flag that a visual check is still required. Propose the scenarios to verify. - ALWAYS run
git pushand check for errors returned by any git hooks / CI (this repo has no local husky hooks, so commitlint runs in CI — a bad conventional-commit title/message will fail there, not on push) - ALWAYS fix any errors — autofixup into the relevant commits, or create a new commit if autofixup does not apply
- ALWAYS create the PR as draft:
- This repo has no
.github/PULL_REQUEST_TEMPLATE.md. Read it only if one exists and mirror its structure; otherwise write a clean default body (see "Writing the description" + "Default body" below). - CRITICAL:
--templateand--bodyare mutually exclusive ingh pr create. Always use--bodywith an inline multiline string, never--template:gh pr create --draft --title "fix(camera): ..." --body "$(cat <<'EOF' ## Summary ... EOF )" - ALWAYS use
--draft— only the user decides when a PR is ready for review - The PR title ALWAYS follows the Conventional Commits header (
<type>(<scope>): <subject>) — same convention as the commit skill. The squash-merge uses this title as the changelog entry, so it must be a valid conventional commit - ALWAYS reference the tracking issue in the body:
Fixes #<issue>/Closes #<issue>
- This repo has no
Writing the description
The description is for a human reviewer who needs to grasp what this PR does at a glance. Write the kind of summary you'd write by hand.
- Summarize the main changes only — the meaningful, functional changes a reviewer needs to know about. A few clear bullet points or short sentences is enough.
- NEVER dump commit details — do not paste commit messages, do not write a commit-by-commit breakdown. The git history already holds that; repeating it just adds noise.
- Skip non-important changes — small refactors, formatting, renames, lint fixes. They dilute the signal; leave them out.
- If the description reads like a changelog of every diff, it's wrong. Clear, concise, high-level — that's the bar.
Default body (no PR template)
The repo has no PR template, so use this structure:
## Summary
<1-4 bullets of the meaningful changes>
## Testing
<what you ran / what still needs a manual visual check>
Fixes #<issue>
Keep it lean: ## Summary, an optional ## Testing, and the Fixes #<issue> line when an issue exists. Add a ## Breaking changes section only when the PR truly breaks something (impact + migration path).
If a template ever gets added
If .github/PULL_REQUEST_TEMPLATE.md exists, mirror its structure instead. The <!-- ... --> HTML comments in it are instructions to the author, not content — strip every one out; they must never appear in the final PR body. Check ([x]) only checklist boxes that genuinely hold; never check a box that isn't true.
Signals
- GitHub stars
- 2k
- Forks
- 121
- Last commit
- Sep 2026
ahel recommends instead
Advanced
- Catalog kind
- skill
- Gateway key
open-pr-ossappscollective- Source
- github.com/ossappscollective/oss-documentscanner