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
@@ -292,15 +292,15 @@ function buildImplementationInstructionsPrompt({
292
292
isFast,
293
293
isDefault,
294
294
isMax,
295
-
isLite,
295
+
isFree,
296
296
hasNoValidation,
297
297
noAskUser,
298
298
}: {
299
299
isSonnet: boolean
300
300
isFast: boolean
301
301
isDefault: boolean
302
302
isMax: boolean
303
-
isLite: boolean
303
+
isFree: boolean
304
304
hasNoValidation: boolean
305
305
noAskUser: boolean
306
306
}){
@@ -320,7 +320,7 @@ ${buildArray(
320
320
`- 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.`,
321
321
(isDefault||isMax)&&
322
322
`- 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)`,
323
-
isLite&&
323
+
isFree&&
324
324
'- IMPORTANT: You must spawn the editor-glm agent to implement the changes after you have gathered all the context you need. This agent will do the best job of implementing the changes so you must spawn it for all changes. Do not pass any prompt or params to the editor agent when spawning it. It will make its own best choices of what to do.',
325
325
isDefault&&
326
326
'- IMPORTANT: You must spawn the editor agent to implement the changes after you have gathered all the context you need. This agent will do the best job of implementing the changes so you must spawn it for all non-trivial changes. Do not pass any prompt or params to the editor agent when spawning it. It will make its own best choices of what to do.',
@@ -347,15 +347,15 @@ function buildImplementationStepPrompt({
0 commit comments