| name | ad-pr |
| description | Open a GitHub pull request with a uniform body shape. Four phases — preflight (`gh` auth + branch pushed), scope assembly (commits + diff vs base), draft body (Summary / Test plan / Links), open + report URL. Title format = Conventional Commits, type inferred from the dominant commit type in the range. `gh` CLI soft-fail with install hint. Triggers on "open a PR", "create a pull request", "submit a PR", "gh pr create", "/ad-pr". |
| summary | Open a GitHub pull request with a uniform body shape (Summary / Test plan / Links). Four phases — preflight (`gh` auth + branch pushed), scope assembly, draft body, open + report URL. Title format = Conventional Commits. |
<background_information>
Implements ADR-0024 and ADR-0032 (doc/adr/0032-ci-failure-is-local-gate-gap.md). Opens a PR via gh pr create with a uniform body shape (Summary / Test plan / Links). Helper posture on scope, links, and body drafting — warnings surface without refusing. Hard gate on local quality: the skill refuses to open a PR when pre-push / CI-mirror gates exit non-zero (WORKFLOW §11 — CI failure is a local gate gap). No --no-verify symmetric bypass; users who need to open a red draft invoke <github-command> pr create --draft directly.
Codex auto-trigger on description keywords is less mature than Claude Code's. If auto-invocation does not fire when the user mentions opening a PR or submitting changes for review, invoke this skill manually.
</background_information>
Step 0 — confirm regime. Run when one or more atomic commits exist on the current branch ahead of the base, or the user asks to "open a PR", "submit a PR", "create a pull request".
Route elsewhere when:
- The branch has uncommitted or unsplit work →
ad-commit first.
- The user wants to merge an already-open PR →
ad-merge.
Phase 1 — preflight. Run the deterministic probe from the consumer repository root:
node .agents/skills/ad-pr/scripts/gh-preflight.mjs pr
If this skill was loaded from another base directory, substitute that base. Execute it; do not re-derive its probes in prose. Its JSON reports github (command, installed, authenticated), git (branch, upstream, aheadOfUpstream), baseBranch, and structured errors. It performs read-only gh / git probes and never switches GitHub accounts. Before execution, consult the repository's binding docs: if they name an approved executable frontend wrapper, run AGENTIC_GH=<wrapper> node .agents/skills/ad-pr/scripts/gh-preflight.mjs pr; otherwise run the command above. Never use gh auth switch.
Let <github-command> be the returned github.command. Use exactly <github-command> for every later GitHub read or write in this workflow; never substitute bare gh, which could select a different account than the preflight.
If github.installed is false, distinguish the failure before offering recovery: when github.command is not gh, surface: "The configured wrapper <github-command> is unavailable. Restore the approved executable wrapper, then rerun this skill." Do not fall back to a different frontend. Otherwise surface: "GitHub CLI not installed. Install: https://cli.github.com/, then rerun this skill." If github.authenticated is false, surface: "Run <github-command> auth login, then rerun this skill." Soft-fail — do not silently fall back to git push only. Surface every remaining errors entry as a partial-preflight fact; do not claim a failed probe passed.
If git.upstream is null or git.aheadOfUpstream is greater than zero, prompt: "Branch not pushed to origin. Run git push -u origin <branch> first? (y/n)". On confirm, run the push and continue.
Use baseBranch as the base. If it is null because the read-only GitHub probe failed, default to main and say that fallback explicitly.
Run local gates before opening the PR (WORKFLOW §11 — CI failure is a local gate gap). The gate check runs after git push has landed the branch (so the pre-push hook has already fired once) and before gh pr create — the goal is to catch the case where a developer skipped the pre-push hook, ran on a different matrix leg than CI, or wired the runner incompletely, and to refuse to open the PR against a red tree:
- Detect the pre-push tier — read
lefthook.yml, .husky/pre-push, .pre-commit-config.yaml (pre-push stage), or .git/hooks/pre-push.
- Run the detected commands explicitly. If no hook runner is detected, fall back to reading
.github/workflows/*.yml (or the detected CI surface) and run its test / lint / typecheck / build commands locally.
- Refuse on red. If any gate exits non-zero, surface: "Pre-push gate failed: . Fix locally before opening the PR — pushing red-CI diffs burns cloud minutes. Rerun ad-pr after fixing." Do not offer
--no-verify or a bypass. WORKFLOW §11 binding.
- Warn on absent gates. If no hook runner and no CI config exist, surface: "No pre-push or CI config detected — opening PR without local gate check. Wire ad-hooks for coverage." Continue.
Matrix awareness: if CI runs a multi-version matrix and local runs one version, note the gap but do not refuse — matrix mirroring belongs to ad-hooks. Refuse only on outright red.
Phase 2 — scope assembly. Gather context:
git log <base>..HEAD --pretty='%h %s'
git diff --stat <base>...HEAD
Infer the PR title:
- Dominant Conventional Commits type across
<base>..HEAD. If one commit, use its type / scope / subject directly. If multiple commits and one type dominates, use that. If mixed, surface to the user: "Branch mixes feat: + fix:. Use which type for the PR title?"
- Scope = most common scope across the commits (or empty if inconsistent).
- Subject synthesized from the changes, ≤70 chars, imperative.
Detect back-links:
- Scan commit message bodies for
task-NNNN, ADR-NNNN, spec-NNNN, #<issue>, Closes, Fixes, Per, See.
- Scan changed file paths for
doc/tasks/NNNN-*.md, doc/adr/NNNN-*.md, doc/specs/NNNN-*.md.
Phase 3 — draft body. Template:
## Summary
- <1-3 bullets — the WHY, not the what>
## Test plan
- [ ] <test 1>
- [ ] <test 2>
## Links
- <task / spec / ADR / issue back-links>
Rules:
- Summary: explain motivation. The commit list and diff already show the what. 1-3 bullets max.
- Test plan: concrete steps a reviewer can run.
npm test, manual smoke, integration check. Skip the section if there is genuinely nothing to test (pure docs PR). Never fabricate test items.
- Links: every detected back-link from Phase 2. Skip the section if there are none. Never invent links.
Surface the draft to the user for approval before opening.
Phase 4 — open + report. Call <github-command> pr create with HEREDOC body:
<github-command> pr create --title "<type>(<scope>): <subject>" --body "$(cat <<'EOF'
## Summary
- ...
## Test plan
- [ ] ...
## Links
- task-NNNN, ADR-NNNN, #issue
EOF
)"
Capture the returned PR URL and report it to the user.
If gh pr create fails (no GitHub remote, branch already has an open PR, etc.), surface the error verbatim and stop. Do not retry blindly.
<output_contract>
The output is an opened PR on GitHub. The skill returns the PR URL.
</output_contract>
Next
- After PR opens and CI starts: monitor via
<github-command> pr checks.
- When CI is green:
ad-merge to evaluate and merge.
- If a fresh-context review is wanted before merge:
ad-review (WORKFLOW §10).
- If preflight surfaced "no CI workflow file":
ad-hooks (when installed) covers local gates; remote CI is a separate concern outside this skill.