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/base2/base2.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ export function createBase2(
85
85
'tmux-cli',
86
86
'browser-use',
87
87
isFree&&'editor-gpt',
88
-
isFree&&'code-reviewer-lite',
88
+
isFree&&'code-reviewer-gpt',
89
89
isDefault&&'code-reviewer',
90
90
isMax&&'code-reviewer-multi-prompt',
91
91
'thinker-gpt',
@@ -152,7 +152,7 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u
152
152
isFree&&
153
153
'- Implement code changes using the editor-gpt agent after you have gathered all the context you need. You must spawn this agent for all non-trivial changes since it is much better at writing code than you.',
154
154
isFree&&
155
-
'- Spawn a code-reviewer-lite to review the changes after you have implemented the changes.',
155
+
'- Spawn a code-reviewer-gpt to review the changes after you have implemented the changes.',
156
156
'- Spawn bashers sequentially if the second command depends on the the first.',
157
157
isDefault&&
158
158
'- Spawn a code-reviewer to review the changes after you have implemented the changes.',
@@ -216,7 +216,7 @@ ${isDefault
216
216
${isDefault
217
217
? `[ You spawn a code-reviewer, a basher to typecheck the changes, and another basher to run tests, all in parallel ]`
218
218
: isFree
219
-
? `[ You spawn a code-reviewer-lite to review the changes, and a basher to typecheck the changes, and another basher to run tests, all in parallel ]`
219
+
? `[ You spawn a code-reviewer-gpt to review the changes, and a basher to typecheck the changes, and another basher to run tests, all in parallel ]`
220
220
: isMax
221
221
? `[ You spawn a basher to typecheck the changes, and another basher to run tests, in parallel. Then, you spawn a code-reviewer-multi-prompt to review the changes. ]`
222
222
: '[ You spawn a basher to typecheck the changes and another basher to run tests, all in parallel ]'
@@ -225,7 +225,7 @@ ${isDefault
225
225
${isDefault
226
226
? `[ You fix the issues found by the code-reviewer and type/test errors ]`
227
227
: isFree
228
-
? `[ You fix the issues found by the code-reviewer-lite and type/test errors ]`
228
+
? `[ You fix the issues found by the code-reviewer-gpt and type/test errors ]`
229
229
: isMax
230
230
? `[ You fix the issues found by the code-reviewer-multi-prompt and type/test errors ]`
231
231
: '[ You fix the issues found by the type/test errors and spawn more bashers to confirm ]'
@@ -349,7 +349,7 @@ ${buildArray(
349
349
(isDefault||isMax)&&
350
350
`- Spawn a ${isDefault ? 'code-reviewer' : 'code-reviewer-multi-prompt'} to review the changes after you have implemented changes. (Skip this step only if the change is extremely straightforward and obvious.)`,
351
351
isFree&&
352
-
`- Spawn a code-reviewer-lite to review the changes after you have implemented changes. (Skip this step only if the change is extremely straightforward and obvious.)`,
352
+
`- Spawn a code-reviewer-gpt to review the changes after you have implemented changes. (Skip this step only if the change is extremely straightforward and obvious.)`,
353
353
`- Inform the user that you have completed the task in one sentence or a few short bullet points.${isSonnet ? " Don't create any markdown summary files or example documentation files, unless asked by the user." : ''}`,
354
354
!isFast&&
355
355
!noAskUser&&
@@ -385,7 +385,7 @@ function buildImplementationStepPrompt({
385
385
(isDefault||isMax)&&
386
386
`You must spawn a ${isDefault ? 'code-reviewer' : 'code-reviewer-multi-prompt'} to review the changes after you have implemented the changes and in parallel with typechecking or testing.`,
387
387
isFree&&
388
-
`You must spawn a code-reviewer-lite to review the changes after you have implemented the changes and in parallel with typechecking or testing.`,
388
+
`You must spawn a code-reviewer-gpt to review the changes after you have implemented the changes and in parallel with typechecking or testing.`,
389
389
`After completing the user request, summarize your changes in a sentence${isFast ? '' : ' or a few short bullet points'}.${isSonnet ? " Don't create any summary markdown files or example documentation files, unless asked by the user." : ''}.`,
0 commit comments