Create a pull request from the current branch following project conventions. Uses the branch name to find the Jira ticket, generates a PR with the standard template, and pushes to origin.
Create a pull request from the current branch using project conventions.
/create-pr # Resolve recorded/default base
/create-pr {base-branch} # Explicit base, including a stacked parent
/create-pr --draft {base-branch} # Create a draft PR against that base
Parse optional --draft plus at most one {base-branch}. Reject unknown or duplicate arguments.
Expand {draft-flag} to --draft when requested and to nothing otherwise.
Get the current branch and working-copy state:
git branch --show-current
git status -sb
If the branch is empty, stop: HEAD is detached. Preserve the commit on a branch before attempting to push or create a PR.
Use the first available source:
{base-branch} argument;git config --get branch.{branch-name}.gh-merge-base (recorded by /stack-branch);origin/HEAD, falling back to local main, then master.If the result is empty, equals the head branch, or does not resolve to a commit, ask rather than guessing. Fetch the selected base, then use it consistently for context and PR creation:
git fetch origin {base-branch}
git log origin/{base-branch}..HEAD --oneline
git diff origin/{base-branch}...HEAD --stat
Parse the branch name to find the ticket number:
{type}/{TICKET-NUMBER}-{description}feat/AB-123-sanitize-input → AB-123AB-123, SSP-456)If no ticket found, ask the user.
Use jira-ticket for the key, summary and description. It owns tool availability, deferred discovery and unavailable-context handoffs. If skill invocation is absent, read that installed skill and follow it; do not reconstruct the lookup. Missing context remains unavailable in the draft unless supplied by the user; never fabricate fetched requirements.
Use conventional commit format based on branch prefix:
| Branch Prefix | PR Title Format |
|---------------|-----------------|
| feat/ | feat(<scope>): <description> |
| fix/ | fix(<scope>): <description> |
| refactor/ | refactor(<scope>): <description> |
| chore/ | chore(<scope>): <description> |
| docs/ | docs(<scope>): <description> |
| perf/ | perf(<scope>): <description> |
Infer the scope from changed files (e.g., offers-cms, web, api).
Analyze the actual code changes (use git diff origin/{base-branch}...HEAD) to write a meaningful description.
House style: say what changed in general terms, easy to digest. Keep the why brief or absent (Jira/Trello owns it) and details minimal (the commits and diff own them). No test narrative, no future-task lists, no names, no bead IDs.
Discover a repo-specific PR template with this exact command. Both the separator (- vs _)
and the case vary across repos; -iname fixes case but NOT the separator, so glob both:
find . .github docs -maxdepth 1 \
\( -iname 'pull[-_]request[-_]template*' -o -iname 'PULL_REQUEST_TEMPLATE*' \) \
2>/dev/null || true
Do not hand-glob a single spelling — that silently finds nothing and falls through to a freehand body. If found, follow the template's headings verbatim; the template overrides house style wherever the two conflict, because it is the reviewing team's contract rather than ours. If not found, ask the user for confirmation on generating the body ourselves.
Organisation PR standards can require document fields that repo templates omit. For
bluelightcard repositories, the org pr-conventions check requires a **PRD:**,
**Tech RFC:** and **ADR:** line, each holding a Confluence link or the literal N/A; empty
values and <…> placeholders fail. When the body lacks them, append:
## Related documents
- **PRD:** N/A
- **Tech RFC:** N/A
- **ADR:** N/A
Use a Confluence link from the Jira ticket where one exists; otherwise N/A.
The description is frozen the moment the PR leaves draft. Editing a description after review has begun invalidates existing approvals and restarts the flow, so the body must already be final then: no test plan of intended future steps, no "to be verified" lines, no deploy or sign-off trackers.
A template checklist is not a future-task list: it is a static attestation of what is already true when the PR is opened. Keep each checkbox line verbatim — never delete, reword, or convert one to prose — unless the template itself says to remove non-applicable items. Tick them all: completed items are true, and conditional items ("If this changes a backend service…") are satisfied when the condition does not apply. If an applicable item is genuinely untrue, stop and tell the user rather than ticking or removing it.
From the same repository/worktree whose branch will be published, run the authoritative, local-only, read-only helper (Python 3.10+, Git and Gitleaks required):
~/.agents/skills/artifact-hygiene/scripts/artifact_hygiene.py --pretty
Capture stdout and exit status, including nonzero exits. Render coverage before findings
using artifact-hygiene's Report contract: exact status/verdict,
each source's status and safe error codes, normalized redacted findings, and suppressed counts
with clone-local allowances disclosed. Use only the helper's normalized evidence; partial is never clean.
Never recover raw evidence from reported files, commits, scanner output, or configuration.
Remediation is a separate explicitly approved task; do not edit artifacts, rewrite history, change
allowances, install tooling, or copy detectors as part of this audit step.
Exit 0 alone is not clearance: it includes complete reports with findings. Continue only with
valid artifact-hygiene/v1 JSON, exit 0, status: complete, verdict: clean, no findings, and every
required coverage source present and complete. On findings, exit 2 (partial), exit 3 (failed), missing helper/scanner,
malformed output, or any other incomplete coverage, stop before push or PR creation. Render the
available redacted report or an unavailable diagnostic, never a fabricated clean result.
This audits the full publishable working tree and the helper's locally resolved unpublished history, not the PR diff or drafted title/body. Do not pass a PR base or narrow its findings to the selected change; the helper has no diff/base option. §6's draft review still applies. An already-published branch still needs this audit before PR creation; a result cannot undo prior publication.
Use fresh evidence from this invocation. Any intervening edit, staging change, commit, ref or audit policy change invalidates it; rerun before asking for publication approval. A clean audit is not consent: §7 and §8 retain their separate immediately-before-action confirmations and standalone commands.
Run the shared preflight immediately before deciding whether publication is needed:
~/.agents/skills/start-ticket/scripts/git-branch-preflight.sh {branch-name}
Skip this phase only when target_published=true: HEAD matches the exact origin/{branch-name} destination.
Never infer publication from a parent upstream or stale remote-tracking ref. On unknown or a
preflight error, stop. Otherwise show the exact branch and remote. Use AskUserQuestion
immediately before the push. If approved, the push must be the next tool call, standalone and unchained:
git push -u origin {branch-name}
Approval applies only to this push. A retry requires fresh confirmation. If declined, stop before PR creation.
Even if the push phase was skipped, rerun §6a before the PR-creation confirmation. Stop on any
non-clean or unavailable audit result. Then show the user the target, title, and complete body draft. Use AskUserQuestion
immediately before creating the PR. Push approval does not authorize this second remote action.
If approved, invoke the wrapper as the next tool call, standalone and unchained:
~/.agents/skills/create-pr/scripts/gh-pr-create.sh {draft-flag} --base {base-branch} --title "{title}" --body "$(cat <<'EOF'
{body}
EOF
)"
If the script is unavailable, show and separately confirm the fallback before running it:
gh pr create {draft-flag} --base {base-branch} --title "{title}" --body "$(cat <<'EOF'
{body}
EOF
)"
Once the PR is created, close the bead for this work — this is the preferred close point in a PR workflow (the commit was done in /complete-task, which deliberately left the bead open for this step). Reopen later if review demands major changes.
Skip this whole step silently if bd is unavailable or the repo has no beads database.
Find the in-progress bead for this work:
bd list --status=in_progress
Match by the Jira key from §3 appearing in the bead title/description, or an obvious 1:1 correspondence to the branch.
If multiple beads plausibly match, ask the user which (if any) to close with AskUserQuestion. If none match, skip silently — don't invent one.
Resolve the chosen bead to its owning store before closing. Never infer the store from the ID or the cwd; at a workspace root the cwd store is the workspace store, not the repository the PR belongs to.
~/.agents/skills/next/scripts/next-select resolve <bead-id>
| status | action |
|---|---|
| resolved | take directory; close and reopen with bd -C <directory> |
| ambiguous | show matches[].selector, ask which <repo>:<id> is meant; close nothing |
| unavailable | report failures; the PR stands, the bead stays in_progress, say why |
| not-found | skip the close and say so; never guess another store |
Close it in that store, referencing the PR:
bd -C <directory> close <bead-id> --reason="PR #<number> created: <pr-title>"
Tell the user the bead was closed and how to reopen it if review requires major changes:
bd -C <directory> update <bead-id> --status=in_progress
Note: /ready-to-merge closes a bead only if it is in_progress. It therefore no-ops when this
close remains current, but closes it post-merge if /review-comments reopened it for substantial
review work.
Output the PR URL so the user can view it, and note the bead that was closed (or left open, if none matched).
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer