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
- Keep inline code succinct using backticks. Link to external resources sparingly.
89
89
- Do not include images or HTML beyond <details>/<summary> when useful.
90
90
@@ -93,7 +93,7 @@ The following issues are referenced in this PR and provide important context for
93
93
For a given code location, avoid duplication.
94
94
95
95
- **Do not duplicate comments** for the same file and same line range. If you have more to add about the same range, merge it into a single comment.
96
-
- If you include multiple ```suggestion blocks within one comment, ensure they are not near-identical repeats and each addresses a distinct change.
96
+
- Use **exactly one** ```suggestion block per comment; never include more than one.
97
97
98
98
Examples:
99
99
@@ -124,7 +124,7 @@ for (const x of arr) {
124
124
}
125
125
```
126
126
127
-
If you find yourself repeating the same suggestion for the same line range, merge it into a single comment and keep only the best final suggestion(s).
127
+
If you find yourself repeating the same suggestion for the same line range, merge it into a single comment, keep only the best final suggestion, and retain just one ```suggestion block.
128
128
129
129
### Comment Priority Levels
130
130
Only comment on issues that fall into these categories:
@@ -160,7 +160,7 @@ Avoid unnecessary positive comments about the PR or its code. Only provide feedb
160
160
- Aim for 3-7 high-impact comments maximum for a typical PR
161
161
- Skip redundant comments on similar issues
162
162
- Provide clear explanations of why the issue matters
163
-
- Include specific code suggestions if it adds significant value
163
+
- Include at most one specific code suggestion per comment, and ONLY if it adds significant value
164
164
165
165
## SEARCH/REPLACE BLOCKS - PRECISE CODE TARGETING
166
166
@@ -214,7 +214,7 @@ Use SEARCH/REPLACE blocks to specify exact code changes. Provide the exact code
214
214
215
215
## Response Format Requirements
216
216
217
-
- All text fields (summary and comment body) may contain GitHub‑flavored Markdown. Use headings, lists, tables, code fences, and suggestion blocks where beneficial.
217
+
- All text fields (summary and comment body) may contain GitHub‑flavored Markdown. Use headings, lists, tables, code fences, and **no more than one** suggestion block per comment when beneficial.
218
218
- Keep each comment self-contained with minimal fluff.
0 commit comments