Skip to content

Commit aa93f2a

Browse files
committed
delete researcher-file-explorer
1 parent f26f29d commit aa93f2a

File tree

4 files changed

+5
-69
lines changed

4 files changed

+5
-69
lines changed

.agents/planners/decomposing-planner-lite.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const definition: SecretAgentDefinition = {
88
model: 'anthropic/claude-sonnet-4.5',
99
spawnerPrompt:
1010
'Creates a better implementation plan by decomposing the task into smaller plans in parallel and synthesizing them into a final plan. Includes full code changes.',
11-
spawnableAgents: ['researcher-file-explorer', 'implementation-planner-lite'],
11+
spawnableAgents: ['file-explorer', 'implementation-planner-lite'],
1212
}
1313

1414
export default definition

.agents/planners/requirements-planner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const definition: SecretAgentDefinition = {
1717
outputMode: 'structured_output',
1818
toolNames: ['spawn_agents', 'set_output', 'end_turn'],
1919
spawnableAgents: [
20-
'researcher-file-explorer',
20+
'file-explorer',
2121
'researcher-web',
2222
'researcher-docs',
2323
'two-wave-planner',
@@ -29,7 +29,7 @@ const definition: SecretAgentDefinition = {
2929
instructionsPrompt: `You are an expert requirements planner with deep experience in software engineering, architecture, and project management.
3030
3131
Instructions:
32-
1. Spawn a researcher-file-explorer agent to get more context about the codebase. Optionally, in parallel, spawn a researcher-web and/or researcher-docs agent to get context about the web and docs.
32+
1. Spawn a file-explorer agent to get more context about the codebase. Optionally, in parallel, spawn a researcher-web and/or researcher-docs agent to get context about the web and docs.
3333
2. Read any new files that have not already been read that could possibly be relevant to the user request or could help with planning.
3434
3. Analyze the user request in "<analysis>" tags. Explain the key steps and components that will be needed to accomplish the task.
3535
4. Come up with 2-8 explicit requirements. Try to keep the requirements disjoint, cover the whole task, and focus on the important and challenging parts of the task.

.agents/researcher/researcher-file-explorer.ts

Lines changed: 0 additions & 64 deletions
This file was deleted.

.agents/researcher/researcher-grok-4-fast.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const definition: SecretAgentDefinition = {
1111
displayName: 'Grok 4 Fast Researcher',
1212
toolNames: ['spawn_agents'],
1313
spawnableAgents: [
14-
'researcher-file-explorer',
14+
'file-explorer',
1515
// 'researcher-codebase-explorer',
1616
'researcher-web',
1717
'researcher-docs',
@@ -38,7 +38,7 @@ ${PLACEHOLDER.KNOWLEDGE_FILES_CONTENTS}`,
3838
Take as many steps as you need to gather information first:
3939
- Use the spawn_agents tool to spawn agents to research the codebase and web. Spawn as many agents in parallel as possible. Feel free to call it multiple times to find more information.
4040
41-
You should likely spawn the researcher-file-explorer agent to get a comprehensive understanding of the codebase. You should also spawn the researcher-web and researcher-docs agents to get up-to-date information from the web and docs, if relevant.
41+
You should likely spawn the file-explorer agent to get a comprehensive understanding of the codebase. You should also spawn the researcher-web and researcher-docs agents to get up-to-date information from the web and docs, if relevant.
4242
4343
Finally, write up a research report that answers the user question to the best of your ability from the information gathered from the agents. Don't add any opinions or recommendations, just all the plain facts that are relevant. Mention which files are relevant to the user question. Be clear and concise.`,
4444
}

0 commit comments

Comments
 (0)