@@ -22,24 +22,19 @@ const researcherGrok4FastExampleContent = readFileSync(
2222 join ( __dirname , 'researcher' , 'researcher-grok-4-fast.ts' ) ,
2323 'utf8' ,
2424)
25- const implementationPlannerExampleContent = readFileSync (
25+ const generatePlanExampleContent = readFileSync (
2626 join ( __dirname , 'planners' , 'generate-plan.ts' ) ,
2727 'utf8' ,
2828)
29- const planSelectorExampleContent = readFileSync (
30- join ( __dirname , 'planners' , 'plan-selector.ts' ) ,
31- 'utf8' ,
32- )
33- const implementationPlannerMaxExampleContent = readFileSync (
34- join ( __dirname , 'planners' , 'generate-plan-max.ts' ) ,
29+ const reviewerExampleContent = readFileSync (
30+ join ( __dirname , 'reviewer' , 'reviewer.ts' ) ,
3531 'utf8' ,
3632)
3733const examplesAgentsContent = [
3834 researcherDocExampleContent ,
3935 researcherGrok4FastExampleContent ,
40- implementationPlannerExampleContent ,
41- planSelectorExampleContent ,
42- implementationPlannerMaxExampleContent ,
36+ generatePlanExampleContent ,
37+ reviewerExampleContent ,
4338]
4439
4540const definition : AgentDefinition = {
0 commit comments