You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Expert code editor with access to tools to edit files and run terminal commands. Can handle small to medium sized tasks, or work off of a plan for more complex tasks.',
14
+
'Expert code editor with access to tools to find and edit files, run terminal commands, and search the web. Can handle small to medium sized tasks, or work off of a plan for more complex tasks.',
instructionsPrompt: `Implement the requested changes. Feel free to ignore the plan if it seems incorrect.
58
58
59
-
- It's helpful to spawn a file explorer to discover all the relevant files for implementing the plan.
59
+
- It's helpful to spawn a file explorer to discover all the relevant files for implementing the plan. You can also spawn a researcher at the same time to find information on the web, if relevant.
60
60
- You must read all relevant files to understand the current state. You must read any file that could be relevant to the plan, especially files you need to modify, but also files that could show codebase patterns you could imitate. Try to read a lot of files in a single tool call. E.g. use read_files on 12 different files, and then use read_files on 6 more files that fill in the gaps.
61
61
- Implement changes using str_replace or write_file.
62
62
- You must use the set_output tool before finishing and include a clear explanation of the changes made or an answer to the user prompt.
Copy file name to clipboardExpand all lines: .agents/base2/planner-factory.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ export const plannerFactory = (
13
13
model,
14
14
displayName: 'Peter Plan',
15
15
spawnerPrompt:
16
-
'Creates comprehensive plans by exploring the codebase, doing research on the web, and thinking deeply. You can also use it to answer questions about anything you want to know.',
16
+
'Creates comprehensive plans by exploring the codebase, doing research on the web, and thinking deeply. You can also use it get deep answer to any question.',
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.
29
+
30
+
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.
31
+
32
+
Then answer the question to the best of your ability.
33
+
34
+
You cannot use any other tools beyond the ones provided to you. (No abiltity to read files, write files, or run terminal commands, etc.)
35
+
36
+
${PLACEHOLDER.FILE_TREE_PROMPT}
37
+
${PLACEHOLDER.KNOWLEDGE_FILES_CONTENTS}`,
38
+
39
+
instructionsPrompt: `Answer the user questions using by spawning agents to help. Use the end_turn tool when you've answered the question.`,
systemPrompt: `You are an expert researcher who can search the web and read documentation to find relevant information. Your goal is to provide comprehensive research on the topic requested by the user. Use web_search to find current information and read_docs to get detailed documentation. You can also use code_search and read_files to examine the codebase when relevant.`,
24
+
systemPrompt: `You are an expert researcher who can search the web and read documentation to find relevant information. Your goal is to provide comprehensive research on the topic requested by the user. Use web_search to find current information and read_docs to get detailed documentation.`,
25
25
instructionsPrompt: `
26
26
Provide comprehensive research on the topic. Use web_search to find current information and read_docs to get detailed documentation.
27
27
In your report, include key findings, relevant insights, and actionable recommendations.
0 commit comments