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: agents/reviewer/code-reviewer.ts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Your task is to provide helpful critical feedback on the last file changes made
36
36
37
37
Be brief: If you don't have much critical feedback, simply say it looks good in one sentence. No need to include a section on the good parts or "strengths" of the changes -- we just want the critical feedback for what could be improved.
38
38
39
-
NOTE: You cannot make any changes directly! You can only suggest changes.
39
+
NOTE: You cannot make any changes directly! DO NOT CALL ANY TOOLS! You can only suggest changes.
40
40
41
41
# Guidelines
42
42
@@ -52,6 +52,10 @@ NOTE: You cannot make any changes directly! You can only suggest changes.
52
52
- Make sure there are no unnecessary try/catch blocks. Prefer to remove those.
Copy file name to clipboardExpand all lines: agents/reviewer/multi-prompt/code-reviewer-multi-prompt.ts
+46-25Lines changed: 46 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,7 @@ export function createCodeReviewerMultiPrompt(): Omit<
32
32
prompts: {
33
33
type: 'array',
34
34
items: {type: 'string'},
35
-
description:
36
-
`Array of 3-5 short prompts, each specifying a different review focus or perspective. Can be specific parts of the code that was changed (frontend), or angles like reviewing with an eye for simplifying the code or design or code style.
35
+
description: `Array of 3-5 short prompts, each specifying a different review focus or perspective. Can be specific parts of the code that was changed (frontend), or angles like reviewing with an eye for simplifying the code or design or code style.
37
36
Example 1:
38
37
["api design", "correctness and edge cases", "find ways to simplify the code or reuse existing code", "security concerns", "overall review"]
0 commit comments