Skip to content

Commit 73a3d4b

Browse files
committed
Make created documents prefixed w/date
1 parent b36a0d5 commit 73a3d4b

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.cursor/commands/scrapebugs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ mkdir -p .cursor/tmp
216216
```
217217
218218
Then write the report to:
219-
`.cursor/tmp/bug-analysis-<repo>-<date>.md`
219+
`.cursor/tmp/MMDDhhmm_bug-analysis-<repo>.md`
220220
221-
Example: `.cursor/tmp/bug-analysis-edge-react-gui-2026-01-28.md`
221+
Example: `.cursor/tmp/01280406_bug-analysis-edge-react-gui.md`
222222
223223
---
224224

.cursor/skills/fix-pr/SKILL.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Skip comments where:
4242

4343
### Plan Document Format
4444

45-
Name the document: `[repository-name]_[branch-name]_pr-[pr-number]_fixplan-MMDDhhmm.md`
45+
Name the document: `MMDDhhmm_[repository-name]_[branch-name]_pr-[pr-number]_fixplan.md`
4646

4747
Structure the plan as:
4848

@@ -71,7 +71,10 @@ Structure the plan as:
7171
...
7272
```
7373

74-
4. Open the plan document in Cursor for the user to review
74+
4. Open the plan document in the current Cursor workspace for the user to review:
75+
```bash
76+
cursor --reuse-window <plan-document-path>
77+
```
7578

7679
## User Iteration
7780

.cursor/skills/review-code/SKILL.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,15 @@ Provide a structured review with:
168168
- **Suggestions**: Consider for improvement
169169
- **Conventions Checklist**: Which conventions were checked and passed/failed
170170

171-
Save the review to a markdown document in the system temp directory (`/tmp` on macOS/Linux), then open it in Cursor for the user to review. Name the document:
172-
- **For PRs**: `[repository-name]_[branch-name]_pr-[pr-number]-MMDDhhmm.md`
173-
- **For local branches**: `[repository-name]_[branch-name]_review-MMDDhhmm.md`
171+
Save the review to a markdown document in the system temp directory (`/tmp` on macOS/Linux), then open it in the current Cursor workspace for the user to review:
172+
173+
```bash
174+
cursor --reuse-window <review-document-path>
175+
```
176+
177+
Name the document:
178+
- **For PRs**: `MMDDhhmm_[repository-name]_[branch-name]_pr-[pr-number].md`
179+
- **For local branches**: `MMDDhhmm_[repository-name]_[branch-name]_review.md`
174180

175181
Pause for the user to review.
176182

0 commit comments

Comments
 (0)