You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude/skills/create-java-pr/SKILL.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ Derive the branch name from the changes being made. Use `feat/`, `fix/`, `ref/`,
35
35
36
36
**For stacked PRs:** For the first PR in a new stack, first create and push the collection branch (see `.cursor/rules/pr.mdc` § "Creating the Collection Branch"), then branch the PR off it. For subsequent PRs, branch off the previous stack branch. Use the naming conventions from `.cursor/rules/pr.mdc` § "Branch Naming".
37
37
38
+
**CRITICAL: Never merge, fast-forward, or push commits into the collection branch.** It stays at its initial position until the user merges stack PRs through GitHub. Updating it will auto-merge and destroy the entire PR stack.
39
+
38
40
## Step 2: Format Code and Regenerate API Files
39
41
40
42
```bash
@@ -111,14 +113,15 @@ Fill in each section based on the changes being PR'd. Check any checklist items
111
113
- Pass `--base <previous-stack-branch>` so the PR targets the previous branch (first PR in a stack targets the collection branch).
112
114
- Use the stacked PR title format: `<type>(<scope>): [<Topic> <N>] <Subject>` (see `.cursor/rules/pr.mdc` § "PR Title Naming").
113
115
- Include the stack list at the top of the PR body, before the `## :scroll: Description` section (see `.cursor/rules/pr.mdc` § "Stack List in PR Description" for the format).
116
+
- Add a merge method reminder at the very end of the PR body (see `.cursor/rules/pr.mdc` § "Stack List in PR Description" for the exact text). This only applies to stack PRs, not the collection branch PR.
114
117
115
118
Then continue to Step 5.5 (stacked PRs only) or Step 6.
116
119
117
120
## Step 5.5: Update Stack List on All PRs (stacked PRs only)
118
121
119
122
Skip this step for standalone PRs.
120
123
121
-
After creating the PR, update the PR description on **every other PR in the stack** so all PRs have the same up-to-date stack list. Follow the format and commands in `.cursor/rules/pr.mdc` § "Stack List in PR Description".
124
+
After creating the PR, update the PR description on **every other PR in the stack — including the collection branch PR** — so all PRs have the same up-to-date stack list. Follow the format and commands in `.cursor/rules/pr.mdc` § "Stack List in PR Description".
Copy file name to clipboardExpand all lines: .cursor/rules/pr.mdc
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -185,6 +185,8 @@ git push -u origin HEAD
185
185
gh pr create --base main --draft --title "<type>(<scope>): <Topic>" --body "Collection PR for the <Topic> stack. Squash-merge this once all stack PRs are merged."
186
186
```
187
187
188
+
**CRITICAL: Do NOT manually update the collection branch.** Never merge, fast-forward, or push stack branch commits into the collection branch. The collection branch stays at its initial position (the empty commit on `main`) until the user merges individual stack PRs into it one by one through GitHub. If you fast-forward the collection branch to include stack commits, GitHub will auto-merge and delete all stack PR branches, destroying the entire stack.
189
+
188
190
### Creating a New Stacked PR
189
191
190
192
1. Start from the tip of the previous stack branch (or the collection branch for the first PR).
Every PR in the stack must have a stack list **at the top of its description** (before the `## :scroll: Description` section). When a new PR is added, update the description on **all** PRs in the stack.
202
+
Every PR in the stack — **including the collection branch PR** — must have a stack list **at the top of its description** (before the `## :scroll: Description` section). When a new PR is added, update the description on **all** PRs in the stack and on the collection branch PR.
201
203
202
204
Format:
203
205
@@ -213,6 +215,14 @@ Format:
213
215
214
216
No status column — GitHub already shows that. The `---` separates the stack list from the rest of the PR description.
215
217
218
+
**Merge method reminder:** On stack PRs (not the collection branch PR), add the following line at the very end of the PR description:
219
+
220
+
```markdown
221
+
> ⚠️ **Merge this PR using a merge commit** (not squash). Only the collection branch is squash-merged into main.
222
+
```
223
+
224
+
This does not apply to standalone PRs or the collection branch PR.
225
+
216
226
To update the PR description, use `--body-file` to avoid shell quoting issues with special characters in the body:
217
227
218
228
```bash
@@ -237,12 +247,12 @@ Once all stack PRs are merged into the collection branch, the collection PR is *
237
247
238
248
### Syncing the Stack
239
249
240
-
When a base PR changes (e.g. after addressing review feedback on PR 1), merge the changes forward through the stack:
250
+
When a base PR changes (e.g. after addressing review feedback on PR 1), merge the changes forward through the stack **between adjacent stack PR branches only**:
**Never merge into the collection branch.** Syncing only happens between stack PR branches. The collection branch is untouched until the user merges PRs through GitHub.
265
+
254
266
Prefer merge over rebase — it preserves commit history, doesn't invalidate existing review comments, and avoids the need for force-pushing. Only rebase if explicitly requested.
0 commit comments