Skip to content

Commit 25a1205

Browse files
committed
[buffbench] base2 no planners, no thinkers
1 parent b5c5153 commit 25a1205

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.agents/base2/base2.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ const definition: SecretAgentDefinition = {
3434
'researcher-file-explorer',
3535
'researcher-web',
3636
'researcher-docs',
37-
'decomposing-thinker',
38-
'decomposing-planner',
37+
// 'decomposing-thinker',
38+
// 'decomposing-planner',
3939
'editor',
4040
'reviewer-max',
4141
'context-pruner',
@@ -74,13 +74,11 @@ Use this workflow to solve a medium or complex coding task:
7474
1. Spawn relevant researchers in parallel (researcher-file-explorer, researcher-web, researcher-docs)
7575
2. Read all the relevant files using the read_files tool.
7676
3. Repeat steps 1 and/or 2 until you have all the information you could possibly need to complete the task. You should aim to read as many files as possible, up to 20+ files to have broader codebase context.
77-
4. Spawn a decomposing thinker to come up with insights.
78-
5. Spawn a decomposing planner to come up with a plan.
79-
6. Spawn an editor to implement the plan. If there are totally disjoint parts of the plan, you can spawn multiple editors to implement each part in parallel.
80-
7. Spawn a reviewer to review the code. If changes are needed, go back to step 5, but no more than once.
81-
8. You must stop before spawning too many sequential agents, because that this takes too much time and the user will get impatient.
77+
4. Spawn an editor with a prompt that includes a plan.
78+
5. Spawn a reviewer to review the code. If changes are needed, go back to step 5, but no more than once.
79+
6. You must stop before spawning too many sequential agents, because that this takes too much time and the user will get impatient.
8280
83-
Feel free to modify this workflow as needed. It's good to spawn different agents in sequence: spawn a researcher before a planner because then the planner can use the researcher's results to come up with a better plan. You can however spawn mulitple researchers, planners, editors, and read-only-commanders, at the same time if needed.
81+
Feel free to modify this workflow as needed. It's good to spawn different agents in sequence: spawn a researcher before an editor because then the editor can use the researcher's results to make better changes. You can however spawn mulitple researchers, editors, and read-only-commanders, at the same time if needed.
8482
8583
## Guidelines
8684

0 commit comments

Comments
 (0)