Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f7358cf486
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| } else { | ||
| // After paragraph + blank line, preserve subsequent body content. | ||
| if (trimmed.length === 0) { | ||
| continue; | ||
| } | ||
| skipping = false; |
There was a problem hiding this comment.
This branch exits skipping on the first non-empty line after one blank line, so stripFirstRunSection removes only the first paragraph under ## First Run instead of the whole section. If that section ever includes a second paragraph or list items before the next heading, those instructions will remain in AGENTS.md, which defeats the cleanup and can leave stale bootstrap guidance active. Continue skipping until a real heading boundary is reached.
Useful? React with 👍 / 👎.
No description provided.