Skip to content

PR templates and AI PR details

PR templates

stax discovers templates from your repository automatically.

Single template

If .github/PULL_REQUEST_TEMPLATE.md exists, stax uses it.

Multiple templates

Use .github/PULL_REQUEST_TEMPLATE/ with one file per template:

.github/
  PULL_REQUEST_TEMPLATE/
    feature.md
    bugfix.md
    docs.md

st submit shows a fuzzy template picker.

Template flags

Flag Behavior
--template <name> Use a specific template
--no-template Skip template entirely
--edit Always open the editor

AI branch names and first commits

Generate the missing st create inputs from local changes:

st create --ai                  # branch name from local changes
st create --ai -a --yes         # branch name + first commit message, stage all
st create api-work --ai -a      # keep branch name, generate commit message
st create --ai -m "Add API"     # keep commit message, generate branch name

--yes accepts generated values without the review prompts. It does not stage files by itself; use -a or pre-stage changes when you want st create --ai to create the first commit.

AI PR details during submit

Generate PR titles and bodies while submitting:

st ss --ai                  # suggest title/body and prompt before updating
st bs --ai --body           # current branch only, body generation only
st ss --ai --yes            # accept generated details for new PRs
st ss --ai --body --yes     # refresh existing PR bodies automatically

--title and --body narrow what AI generates. Without either modifier, --ai targets both title and body.

For existing PRs, interactive --ai asks whether to update title, body, both, or skip. With --yes, plain --ai leaves existing PR content alone; explicit --title and/or --body updates those fields automatically.

AI generation hub (st gen / st generate)

Bare st gen (alias of st generate) opens an interactive picker: refresh PR body, refresh PR title, or amend HEAD with a new commit message. For scripting, pass exactly one artifact flag:

st gen --pr-body
st gen --pr-title
st gen --commit-msg

--template / --no-template apply only to --pr-body. --model requires --agent on the same run.

AI PR body refresh

Generate or update a PR body using diff, commits, and template:

st generate --pr-body
st gen --pr-body --no-prompt   # skip final review prompt

Prerequisites

  • Current branch is tracked by stax
  • Current branch already has a PR (e.g. created via st submit / st ss)

If no PR exists yet:

st ss
st generate --pr-body

Template behavior for generate

generate --pr-body uses the same template logic as submit:

Scenario Behavior
--no-template Skip template entirely
--template <name> Use the named template (warns + falls back if not found)
--no-prompt + single template Auto-select the single template
--no-prompt + multiple templates No template (avoids silent arbitrary pick)
Interactive + single template Auto-select the single template
Interactive + multiple templates Fuzzy picker
st generate --pr-body --template feature
st generate --pr-body --no-template
st generate --pr-body --no-prompt

Options

Flag Behavior
--agent <name> Override configured agent for one run
--model <name> Override model for one run (requires --agent on the same command)
--no-prompt Skip picker/review prompts, use defaults
--edit Review/edit generated body before update
--template <name> Use a specific PR template
--no-template Skip PR template

Supported agents: claude, codex, gemini, opencode. When codex is selected, stax tries OpenAI's live Models API first (using OPENAI_API_KEY) before falling back to local Codex defaults.

To forget the saved AI pairing and re-prompt:

st config --reset-ai
st config --reset-ai --no-prompt   # clear without opening picker

Stack graph placement

Put the stack graph in the PR body instead of the default stax comment:

[submit]
stack_links = "body"   # or "both"

More examples

st generate --pr-body --agent codex --model gpt-5.3-codex
st generate --pr-body --agent claude --model claude-haiku-4-5-20251001
st generate --pr-body --agent gemini --model gemini-2.5-flash
st generate --pr-body --agent opencode
st generate --pr-body --edit
st generate --pr-body --template feature
st gen --pr-title --agent claude
st gen --commit-msg --agent codex