Skip to content

Commit e27510e

Browse files
committed
Update our .agents to use types dir
1 parent 4bf42e4 commit e27510e

File tree

6 files changed

+18
-28
lines changed

6 files changed

+18
-28
lines changed

.agents/brainstormer.ts

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import {
2-
AgentConfig,
3-
AgentStepContext,
4-
ToolResult,
5-
ToolCall,
6-
} from './agent-config'
1+
import { AgentConfig } from './types/agent-config'
72

83
const config: AgentConfig = {
94
id: 'brainstormer',
@@ -66,19 +61,19 @@ Remember: Your goal is to expand thinking, not to provide definitive answers. He
6661

6762
subagents: ['thinker', 'researcher'],
6863

69-
parentInstructions: {
70-
base: 'Spawn brainstormer when you need creative alternatives, want to challenge assumptions, or explore different approaches to implementation problems',
71-
base_lite:
72-
"Use brainstormer for quick creative insights when you're stuck or need fresh perspectives on simple problems",
73-
base_max:
74-
'Leverage brainstormer for deep creative exploration of complex problems with multiple potential solution paths',
75-
thinker:
76-
'Collaborate with brainstormer when analytical thinking needs creative angles or assumption challenging',
77-
researcher:
78-
'Use brainstormer to suggest creative search angles and alternative information sources for research',
79-
reviewer:
80-
'Engage brainstormer for creative problem-solving approaches to code review and innovative improvement suggestions',
81-
},
64+
// parentInstructions: {
65+
// base: 'Spawn brainstormer when you need creative alternatives, want to challenge assumptions, or explore different approaches to implementation problems',
66+
// base_lite:
67+
// "Use brainstormer for quick creative insights when you're stuck or need fresh perspectives on simple problems",
68+
// base_max:
69+
// 'Leverage brainstormer for deep creative exploration of complex problems with multiple potential solution paths',
70+
// thinker:
71+
// 'Collaborate with brainstormer when analytical thinking needs creative angles or assumption challenging',
72+
// researcher:
73+
// 'Use brainstormer to suggest creative search angles and alternative information sources for research',
74+
// reviewer:
75+
// 'Engage brainstormer for creative problem-solving approaches to code review and innovative improvement suggestions',
76+
// },
8277
}
8378

8479
export default config

.agents/charles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AgentConfig } from './agent-config'
1+
import { AgentConfig } from './types/agent-config'
22

33
/**
44
* Charles - Deep Sea Sardine Research Specialist

.agents/git-committer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AgentConfig, AgentStepContext } from './agent-config'
1+
import { AgentConfig, AgentStepContext } from './types/agent-config'
22

33
const config: AgentConfig = {
44
id: 'git-committer',

.agents/knowledge-keeper.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import {
2-
AgentConfig,
3-
AgentStepContext,
4-
ToolResult,
5-
ToolCall,
6-
} from './agent-config'
1+
import { AgentConfig } from './types/agent-config'
72

83
const config: AgentConfig = {
94
id: 'knowledge-keeper',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export interface AgentConfig {
6161

6262
/** Prompt inserted at each agent step. Powerful for changing the agent's behavior,
6363
* but usually not necessary for smart models. Prefer instructionsPrompt for most instructions. */
64-
stepPrompt: string
64+
stepPrompt?: string
6565

6666
// ============================================================================
6767
// Input and Output

0 commit comments

Comments
 (0)