Skip to content

Commit 6215f0e

Browse files
committed
tweaks
1 parent ac7e1cf commit 6215f0e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"editor.formatOnSave": true,
33
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"[typescript]": {
5-
"editor.defaultFormatter": "esbenp.prettier-vscode"
5+
"editor.defaultFormatter": "vscode.typescript-language-features"
66
},
77
"[typescriptreact]": {
88
"editor.defaultFormatter": "vscode.typescript-language-features"

agents/gpt-5-agent.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ const definition: SecretAgentDefinition = {
77
publisher,
88
model: 'openai/gpt-5.2',
99
reasoningOptions: {
10-
enabled: true,
1110
effort: 'high',
12-
exclude: false,
1311
},
1412
displayName: 'GPT-5 Agent',
1513
spawnerPrompt:
@@ -44,7 +42,7 @@ const definition: SecretAgentDefinition = {
4442
'write_file',
4543
],
4644

47-
instructionsPrompt: `Tips: Use the spawn_agents tool to spawn agents to help you complete the user request. file-picker is really good at finding relevant files in the codebase and so a good one to start with. You should spawn multiple agents in parallel when possible to speed up the process. (e.g. spawn 3 file-pickers + 1 code-searcher + 1 researcher-web in one spawn_agents call or 3 commanders in one spawn_agents call). Read multiple files at once to speed up the process and get more context.`,
45+
instructionsPrompt: `Use the spawn_agents tool to spawn agents to help you complete the user request. file-picker is really good at finding relevant files in the codebase and so you should spawn it if at all relevant. You should spawn multiple agents in parallel when possible to speed up the process. (e.g. spawn 3 file-pickers + 1 code-searcher + 1 researcher-web in one spawn_agents call or 3 commanders in one spawn_agents call). Read multiple files at once to speed up the process and get more context.`,
4846

4947
handleSteps: function* ({ params }) {
5048
const filePaths = params?.filePaths as string[] | undefined

0 commit comments

Comments
 (0)