Skip to content

Commit 9fb72d3

Browse files
committed
fix agent id
1 parent 33dc873 commit 9fb72d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.agents/base2/base2-gpt-5-worker-simple.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const base2 = createBase2('max')
66

77
const definition: SecretAgentDefinition = {
88
...base2,
9-
id: 'base2-gpt-5-worker',
9+
id: 'base2-gpt-5-worker-simple',
1010
model: 'openai/gpt-5',
1111
spawnableAgents: buildArray(
1212
'file-picker',

.agents/base2/base2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ ${
156156
5. Inform the user that you have completed the task in one sentence without a final summary. Don't create any markdown summary files either, unless asked by the user.`
157157
}`,
158158

159-
stepPrompt: `Don't forget to spawn agents that could help, especially: the file-picker-max and code-searcher to get codebase context,${!isFast ? ' the generate-plan agent to create a plan,' : ''} code-reviewer to review changes${!isFast ? ', and the validator to run validation commands' : ''}.`,
159+
stepPrompt: `Don't forget to spawn agents that could help, especially: the file-picker-max and code-searcher to get codebase context,${isNormal ? ' the generate-plan agent to create a plan,' : isMax ? ' the base2-gpt-5-worker agent to do the planning and editing,' : ''}${!isFast ? ' code-reviewer to review changes, and the validator to run validation commands' : ''}.`,
160160

161161
handleSteps: function* ({ params }) {
162162
let steps = 0

0 commit comments

Comments
 (0)