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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ export function createBase2(
70
70
isDefault&&'editor',
71
71
isMax&&'editor-multi-prompt',
72
72
isMax&&'thinker-best-of-n-opus',
73
-
!isLite&&'code-reviewer-opus',
73
+
!isLite&&'code-reviewer',
74
74
'context-pruner',
75
75
),
76
76
@@ -131,7 +131,7 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u
131
131
'- Spawn commanders sequentially if the second command depends on the the first.',
132
132
!isFast&&
133
133
!isLite&&
134
-
'- Spawn a code-reviewer-opus to review the changes after you have implemented the changes.',
134
+
'- Spawn a code-reviewer to review the changes after you have implemented the changes.',
135
135
).join('\n ')}
136
136
- **No need to include context:** When prompting an agent, realize that many agents can already see the entire conversation history, so you can be brief in prompting them without needing to include context.
137
137
@@ -305,7 +305,7 @@ ${buildArray(
305
305
isFast&&
306
306
'- Do a single typecheck targeted for your changes at most (if applicable for the project). Or skip this step if the change was small.',
307
307
(isDefault||isMax)&&
308
-
'- Spawn a code-reviewer-opus to review the changes after you have implemented the changes. (Skip this step only if the change is extremely straightforward and obvious.)',
308
+
'- Spawn a code-reviewer to review the changes after you have implemented the changes. (Skip this step only if the change is extremely straightforward and obvious.)',
309
309
!hasNoValidation&&
310
310
`- Test your changes by running appropriate validation commands for the project (e.g. typechecks, tests, lints, etc.). Try to run all appropriate commands in parallel. ${isMax ? ' Typecheck and test the specific area of the project that you are editing *AND* then typecheck and test the entire project if necessary.' : ' If you can, only test the area of the project that you are editing, rather than the entire project.'} You may have to explore the project to find the appropriate commands. Don't skip this step!`,
311
311
`- 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." : ''}`,
@@ -333,7 +333,7 @@ function buildImplementationStepPrompt({
333
333
isMax&&
334
334
`You must spawn the 'editor-multi-prompt' agent to implement code changes, since it will generate the best code changes.`,
335
335
(isDefault||isMax)&&
336
-
'Spawn code-reviewer-opus to review the changes after you have implemented the changes and in parallel with typechecking or testing.',
336
+
'Spawn code-reviewer to review the changes after you have implemented the changes and in parallel with typechecking or testing.',
337
337
`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." : ''} Don't repeat yourself, especially if you have already concluded and summarized the changes in a previous step -- just end your turn.`,
338
338
!isFast&&
339
339
`After a successful implementation, use the suggest_followups tool to suggest around 3 next steps the user might want to take.`,
0 commit comments