fix typos
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: babysit-pr
|
||||
description: Monitor a pull request through review and CI. Use when the user asks to monitor, wathc, or a babysit a PR
|
||||
description: Monitor a pull request through review and CI. Use when the user asks to monitor, watch, or babysit a PR
|
||||
---
|
||||
|
||||
# Babysit PR
|
||||
@@ -22,8 +22,8 @@ resolve the comment. Format comments left on Joshua's behalf as:
|
||||
[actual reply]
|
||||
```
|
||||
|
||||
Screenshots and videos are helpful as well. use the `file-upload` skill when needed.
|
||||
Screenshots and videos are helpful as well. Use the `file-upload` skill when needed.
|
||||
|
||||
Do not let review feedback expand the PR beyodn the user's original goal. Address real shortcomings, but avoid scope creep.
|
||||
Do not let review feedback expand the PR beyond the user's original goal. Address real shortcomings, but avoid scope creep.
|
||||
|
||||
If nothing has changed, stay quiet rather than posting filler comments. Stop when the review bots and required checks are green on the latest commit. Merge only when the user explicitly requested it; otherwise report that the PR is ready.
|
||||
@@ -21,7 +21,7 @@ GOOD
|
||||
Open the description with a simple explanation of the problem based on the user's original prompt, then briefly explain the solution. Do not lead with an implementation inventory:
|
||||
|
||||
BAD
|
||||
> ❌ Removed implicit wokspace carry-over from every "new thread" entry point (cmd+n / cmd+shift+o, sidebar v1/v2 buttons, command palette). New threads inherit only the project from context; branch, worktree, and env mode always come from the configured defaults. Deleted buildContextualThreadOptions, startNewThreadInProjectFromContext, and the v1 sidebar's seed-context machinery.
|
||||
> ❌ Removed implicit workspace carry-over from every "new thread" entry point (cmd+n / cmd+shift+o, sidebar v1/v2 buttons, command palette). New threads inherit only the project from context; branch, worktree, and env mode always come from the configured defaults. Deleted buildContextualThreadOptions, startNewThreadInProjectFromContext, and the v1 sidebar's seed-context machinery.
|
||||
|
||||
GOOD
|
||||
> ✅ My "new worktree" default was ignored when starting new threads on existing worktrees. Super unintuitive. Now your preferences always apply.
|
||||
|
||||
@@ -5,7 +5,7 @@ description: When a user asks to upload a file, or one is needed for PR descript
|
||||
|
||||
# File upload
|
||||
|
||||
Upload files to `https://files.gitcoffee.dev` and return the permanent public URL from the reponse body. Authenticate with `FILE_HOST_TOKEN`. If it is unset, tell the user instead of guessing.
|
||||
Upload files to `https://files.gitcoffee.dev` and return the permanent public URL from the response body. Authenticate with `FILE_HOST_TOKEN`. If it is unset, tell the user instead of guessing.
|
||||
|
||||
## Upload
|
||||
|
||||
@@ -23,7 +23,7 @@ curl -sS --fail-with-body -X PUT -T <path-to-file> \
|
||||
|
||||
- Embed images (`png`, `jpg`, `gif`, `webp`) as ``
|
||||
- Link videos (`mp4`, `mov`, `webm`) as `[screen recording](URL)` because inline video players are not well supported.
|
||||
- When an inline preview genuienly helps and the clip is shorter than about 30 seconds, also upload a GIF preview:
|
||||
- When an inline preview genuinely helps and the clip is shorter than about 30 seconds, also upload a GIF preview:
|
||||
|
||||
```bash
|
||||
ffmpeg -i recording.mp4 -vf "fps=10,scale=800:-1" -loop 0 preview.gif
|
||||
|
||||
@@ -7,5 +7,5 @@ description: Use when the user provides a plan.gitcoffee.dev URL to read.
|
||||
|
||||
Fetch the uploaded HTML with the shell. Do not use web search or a browser.
|
||||
1. Remove a trailing slash, then append `/raw` unless the URL already ends in `/raw`.
|
||||
2. Run curl --fail --silent --show-error --location --max-time 30 --output /tmp/postplan. html `<raw-url>`.
|
||||
3. Read `/tmp/postplan.html` and continue the user's request from its contents. If `curl` fails, report its actual status or network error. Do not substitute search results.
|
||||
2. Run curl --fail --silent --show-error --location --max-time 30 --output /tmp/postplan.html `<raw-url>`.
|
||||
3. Read `/tmp/postplan.html` and continue the user's request from its contents. If `curl` fails, report its actual status or network error. Do not substitute search results.
|
||||
|
||||
Reference in New Issue
Block a user