| name | open-pr |
| description | Open a PR from the current branch to `main`: commit if needed, ensure an Nx version plan exists, push, and create the PR with a filled-in description and testing steps. Run only when the user explicitly asks to open/create a PR. |
| disable-model-invocation | true |
open-pr
Open a PR from the current branch to main. Commit if needed, push, then create the PR with a filled-in description and testing steps.
Important: Do NOT ask for confirmation at any step. Run the entire flow automatically from start to finish. Only stop and ask the user if something fails or if the branch is main and you need a branch name.
Step 0: Ensure we are on a feature branch
Run git branch --show-current to check the current branch.
Step 1: Ensure an Nx version plan exists
Run:
git diff main...HEAD --name-only -- .nx/version-plans/
-
If the output is non-empty, a version plan already exists — skip to Step 2.
-
Otherwise, create one. Determine which packages are affected by looking at the changed files (git diff main...HEAD --name-only):
-
Files under libs/ui-react/ → '@ledgerhq/lumen-ui-react'
-
Files under libs/ui-rnative/ → '@ledgerhq/lumen-ui-rnative'
-
Files under libs/design-core/ → '@ledgerhq/lumen-design-core'
-
Files under libs/utils-shared/ → '@ledgerhq/lumen-utils-shared'
Always use patch as the bump type — never minor, never major — regardless of the change (feature, fix, breaking change, etc.) — see the release-plan convention.
Create one file per affected package — never group multiple packages in the same file. If N packages are affected, create N files named .nx/version-plans/version-plan-<timestamp>-<pkg>.md, each with a single-package frontmatter:
---
'@ledgerhq/lumen-ui-rnative': patch
---
feat(Select): add render prop and SelectButtonTrigger
The description line should match the PR title / commit message style.
Step 2: Create a commit if needed
-
If git status shows nothing to commit, skip to Step 3.
-
If git status shows uncommitted changes (staged or unstaged):
Step 3: Push the branch
Push the branch to the remote (or update it if already pushed):
git push -u origin HEAD
Step 4: Check for an existing PR
Run:
gh pr view --json url
- If a PR already exists, print the existing PR URL and stop.
- Otherwise, continue to Step 5.
Step 5: Prepare PR body
-
Generate the PR body using the following structure:
## Description
<!-- Focus on WHY the change is being made — the motivation, problem, or goal.
Briefly mention what was done only to give context for the why.
If the change is UI-related, remind to add screenshots. -->
## How to test
<!-- Add concrete testing steps derived from the changed code.
e.g. which screen to open, what to tap, what to expect.
Must be specific enough for a reviewer to follow. -->
## Screenshots
<!-- Before/after screenshots if UI change, otherwise N/A -->
-
Fill in the template:
- Description: Analyse the diff against
main (git diff main...HEAD). Write a description focused on why the change is being made. Briefly mention what was done to give context.
- How to test: Derive concrete, specific testing steps from the changed code (e.g. which screen to open, what to interact with, what to expect).
- Screenshots: If the change is UI-related, add "Add before/after screenshots here"; otherwise write "N/A".
-
Save the body to /tmp/pr-body.md.
Step 6: Create the PR with GitHub CLI
-
Generate a PR title using a conventional commit message. Format: <prefix>(<scope>): <summary>. Pick the most appropriate prefix:
feat — new feature or user-facing addition
fix — bug fix
refactor — code restructuring without behaviour change
chore — maintenance, dependency updates, CI changes
docs — documentation only
test — adding or updating tests
style — formatting, whitespace, etc.
Include an optional scope in parentheses when it helps clarify the area (e.g. feat(select): ..., fix(button): ...).
The title should be a concise, human-readable summary.
-
Run:
gh pr create --title "<generated title>" --base main --body-file /tmp/pr-body.md
If gh is not installed or not authenticated, tell the user to install the GitHub CLI and run gh auth login, then rerun the command.
-
Output the PR link. After the PR is created, print a clickable link to the PR URL.
-
Clean up by deleting /tmp/pr-body.md.
Summary
- Ensure we are on a feature branch (create one if on
main).
- Ensure an Nx version plan exists in
.nx/version-plans/ — create one if missing, based on affected packages and change type.
- If there are uncommitted changes, create a commit with a clear conventional message.
- Push the branch to the remote.
- Check if a PR already exists — if so, skip creation and print the URL.
- Build the PR body with Description (why), How to test (concrete steps), and Screenshots.
- Run
gh pr create --base main --body-file /tmp/pr-body.md and output a clickable link to the created PR.
- Delete the temporary body file.