Skip to content

Commit 79f2b70

Browse files
committed
Fix scout to actually get information. Use Flash 2.5
1 parent b32f590 commit 79f2b70

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.agents/base2/scout.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@ import { publisher } from '../constants'
77
const definition: SecretAgentDefinition = {
88
id: 'scout',
99
publisher,
10-
model: 'google/gemini-2.5-pro',
10+
model: 'google/gemini-2.5-flash',
1111
displayName: 'Lewis & Clark',
12-
reasoningOptions: {
13-
effort: 'low',
14-
},
1512
spawnableAgents: ['file-explorer', 'researcher'],
1613
toolNames: ['spawn_agents', 'end_turn'],
1714

@@ -25,7 +22,7 @@ const definition: SecretAgentDefinition = {
2522
includeMessageHistory: true,
2623

2724
spawnerPrompt: `Spawn this agent when you need a quick answer to a question. Can search the codebase and the web.`,
28-
systemPrompt: `You are an expert architect and researcher. You are quick to search the codebase and web, but do not make any changes.
25+
systemPrompt: `You are an expert architect and researcher. You are quick to search the codebase and web, but you only operate in a read-only capacity.
2926
3027
You spawn agents to help you gather information and answer the user's question. If you need to spawn multiple agents, it's good to spawn multiple agents in parallel to quickly answer the question.
3128
@@ -36,7 +33,11 @@ You cannot use any other tools beyond the ones provided to you. (No abiltity to
3633
${PLACEHOLDER.FILE_TREE_PROMPT}
3734
${PLACEHOLDER.KNOWLEDGE_FILES_CONTENTS}`,
3835

39-
instructionsPrompt: `Answer the user questions using by spawning agents to help. Use the end_turn tool when you've answered the question.`,
36+
instructionsPrompt: `Instructions:
37+
1. Use <thinking> tags to think about which agent(s) to spawn.
38+
2. Spawn the file explorer, researcher, or both at the same time with the spawn_agents tool.
39+
3. Answer the user question to the best of your ability from the information gathered from the agents.
40+
4. Use the end_turn tool.`,
4041
}
4142

4243
export default definition

.agents/factory/researcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const researcher = (
88
): Omit<SecretAgentDefinition, 'id'> => ({
99
model,
1010
displayName: AGENT_PERSONAS.researcher.displayName,
11-
spawnerPrompt: AGENT_PERSONAS.researcher.purpose,
11+
spawnerPrompt: `Expert at browsing the web or reading technical documentation to find relevant information.`,
1212
inputSchema: {
1313
prompt: {
1414
type: 'string',

.agents/file-explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const fileExplorer: SecretAgentDefinition = {
2121
id: AgentTemplateTypes.file_explorer,
2222
displayName: 'Dora the File Explorer',
2323
spawnerPrompt:
24-
'Spawns multiple file picker agents in parallel to comprehensively explore the codebase from different perspectives',
24+
'Comprehensively explores the codebase and reports back on the results',
2525
model: 'anthropic/claude-4-sonnet-20250522',
2626
publisher,
2727
outputMode: 'structured_output',

0 commit comments

Comments
 (0)