Skip to content

Commit bdd07da

Browse files
committed
Fix gpt-5-planner (again)
1 parent f554b66 commit bdd07da

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.agents/base2/base2-factory.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ For trivial changes, you may skip planning and go directly to editing.
4949
instructionsPrompt: `Orchestrate the completion of the coding task using your specialized sub-agents.
5050
5151
Workflow:
52-
1. Assess if the task is complex enough to require planning: if it's not a trivial change, you should spawn planner
53-
2. Spawn editor to implement the changes
54-
3. Spawn reviewer to validate the implementation
52+
1. Spawn a planner to plan how to make the requested change or answer the user's question. If it's a trivial change, you can skip this step.
53+
2. Spawn editor to implement the changes (if any)
54+
3. Spawn reviewer to validate the implementation (if any)
5555
4. Iterate if needed based on feedback by calling the editor again, or if you need to make significant changes, spawn the planner again
5656
5757
When prompting an agent, realize that they can already see the entire conversation history, so you can be brief on what they should do.

.agents/base2/gpt-5-high/base2-gpt-5-high.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const definition: SecretAgentDefinition = {
77
id: 'base2-gpt-5-high',
88
publisher,
99
...base2('anthropic/claude-4-sonnet-20250522'),
10+
displayName: 'Base2 GPT-5 High',
1011
spawnableAgents: [
1112
'planner-gpt-5-high',
1213
'editor-gpt-5-high',

.agents/base2/gpt-5-high/planner-gpt-5-high.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const definition: SecretAgentDefinition = {
4242
input: {
4343
agents: [
4444
{
45-
agent_type: 'gemini-thinker-high',
45+
agent_type: 'thinker-gpt-5-high',
4646
prompt: `Create a clear implementation plan for the following task, with a focus on simplicity and making the minimal changes necessary for an awesome implementation. Prompt: ${prompt}`,
4747
},
4848
],

0 commit comments

Comments
 (0)