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
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,6 @@ export function createBase2(
88
88
isFree&&'code-reviewer-lite',
89
89
isDefault&&'code-reviewer',
90
90
isMax&&'code-reviewer-multi-prompt',
91
-
isFree&&'thinker-with-files-gemini',
92
91
'thinker-gpt',
93
92
'context-pruner',
94
93
),
@@ -144,7 +143,6 @@ Use the spawn_agents tool to spawn specialized agents to help you complete the u
144
143
${buildArray(
145
144
'- Spawn context-gathering agents (file pickers, code searchers, and web/docs researchers) before making edits. Use the list_directory and glob tools directly for searching and exploring the codebase.',
146
145
isFree&&'Do not spawn the thinker-gpt agent, unless the user asks. Not everyone has connected their ChatGPT subscription to Codebuff to allow for it.',
147
-
isFree&&`Spawn the thinker-with-files-gemini agent for complex problems — it's very smart. Skip it for routine edits and clearly-scoped changes. Pass the relevant filePaths since it has no conversation history.`,
148
146
isDefault&&
149
147
'- Spawn the editor agent to implement the changes after you have gathered all the context you need.',
150
148
(isDefault||isMax)&&
@@ -354,8 +352,6 @@ ${buildArray(
354
352
'After getting context on the user request from the codebase or from research, use the ask_user tool to ask the user for important clarifications on their request or alternate implementation strategies. You should skip this step if the choice is obvious -- only ask the user if you need their help making the best choice.',
355
353
(isDefault||isMax||isFree)&&
356
354
`- For any task requiring 3+ steps, use the write_todos tool to write out your step-by-step implementation plan. Include ALL of the applicable tasks in the list.${isFast ? '' : ' You should include a step to review the changes after you have implemented the changes.'}:${hasNoValidation ? '' : ' You should include at least one step to validate/test your changes: be specific about whether to typecheck, run tests, run lints, etc.'} You may be able to do reviewing and validation in parallel in the same step. Skip write_todos for simple tasks like quick edits or answering questions.`,
357
-
isFree&&
358
-
`- For complex problems, spawn the thinker-with-files-gemini agent after gathering context. Skip it for routine edits and clearly-scoped changes. Pass the relevant filePaths.`,
359
355
(isDefault||isMax)&&
360
356
`- For quick problems, briefly explain your reasoning to the user. If you need to think longer, write your thoughts within the <think> tags. Finally, for complex problems, spawn the thinker agent to help find the best solution. (gpt-5-agent is a last resort for complex problems)`,
361
357
isDefault&&
@@ -400,8 +396,6 @@ function buildImplementationStepPrompt({
400
396
isMax&&
401
397
`Keep working until the user's request is completely satisfied${!hasNoValidation ? ' and validated' : ''}, or until you require more information from the user.`,
402
398
'Consider loading relevant skills with the skill tool if they might help with the current task. Do not reload skills that were already loaded earlier in this conversation.',
403
-
isFree&&
404
-
`Spawn the thinker-with-files-gemini agent for complex problems, not routine edits. Pass the relevant filePaths.`,
405
399
isMax&&
406
400
`You must spawn the 'editor-multi-prompt' agent to implement code changes rather than using the str_replace or write_file tools, since it will generate the best code changes.`,
0 commit comments