| name | create-pull-request |
| description | Create a PR aligned with the AI-led workflow: summary, design (when relevant), impact and risks. Use when creating a pull request, opening a PR, pushing for review, or completing implementation of an issue. |
Create pull request
Workflow
- Confirm the target issue and approved implementation plan.
- Read
git diff and changed files.
- Draft title and body in the format below.
- Run
gh pr create.
Title
One short line that states intent. No prefix required.
Body format
## Problem
(What this PR solves. Include `Closes #XX` or `Refs #XX`.)
## Solution
(Approach and main changes as bullets.)
## Design
<!-- Only for greenfield or design changes -->
```mermaid
(structure or flow diagram)
```
## Impact and risks
(State "None" if there are none.)
Rules
- Problem and Solution are required.
- Design only when introducing or changing architecture; omit the section if N/A.
- Impact and risks is required even when the answer is "None".
- List any intentional advisory deviation (deep modules, design-it-twice, Tailwind tokens, missing tests, Storybook) under Impact and risks so it surfaces at the next health checkup.
- Do not guess intent—ask a human when unclear.