Skip to content

Commit e7fc76a

Browse files
committed
Move generate-plan-max to graveyard
1 parent 4b93926 commit e7fc76a

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.agents/planners/generate-plan-max.ts renamed to .agents-graveyard/planners/generate-plan-max.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { publisher } from '../constants'
2-
import { type SecretAgentDefinition } from '../types/secret-agent-definition'
1+
import { publisher } from '../../.agents/constants'
2+
import { type SecretAgentDefinition } from '../../.agents/types/secret-agent-definition'
33

44
const definition: SecretAgentDefinition = {
55
id: 'generate-plan-max',

.agents/planners/plan-selector.ts renamed to .agents-graveyard/planners/plan-selector-for-generate-plan.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { publisher } from '../constants'
1+
import { publisher } from '../../.agents/constants'
22
import {
33
PLACEHOLDER,
44
type SecretAgentDefinition,
5-
} from '../types/secret-agent-definition'
5+
} from '../../.agents/types/secret-agent-definition'
66

77
const definition: SecretAgentDefinition = {
88
id: 'plan-selector',

.agents/agent-builder.ts

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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
)
3733
const examplesAgentsContent = [
3834
researcherDocExampleContent,
3935
researcherGrok4FastExampleContent,
40-
implementationPlannerExampleContent,
41-
planSelectorExampleContent,
42-
implementationPlannerMaxExampleContent,
36+
generatePlanExampleContent,
37+
reviewerExampleContent,
4338
]
4439

4540
const definition: AgentDefinition = {

0 commit comments

Comments
 (0)