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
`4. Create the complete agent template file in ${AGENT_TEMPLATES_DIR}`,
138
136
'5. Ensure the template follows all conventions and best practices',
139
137
'6. Use the AgentConfig interface for the configuration',
138
+
'7. Start the file with: import type { AgentConfig } from "./types/agent-config"',
140
139
'',
141
140
'Create agent templates that are focused, efficient, and well-documented. Always import the AgentConfig type and export a default configuration object.',
142
141
].join('\n'),
@@ -167,7 +166,7 @@ IMPORTANT: Always end your response with the end_turn tool when you have complet
167
166
yield{
168
167
toolName: 'run_terminal_command',
169
168
args: {
170
-
command: `mkdir -p ${AGENT_TEMPLATES_DIR}`,
169
+
command: `mkdir -p ${TYPES_DIR}`,
171
170
process_type: 'SYNC',
172
171
timeout_seconds: 10,
173
172
},
@@ -227,6 +226,7 @@ IMPORTANT: Always end your response with the end_turn tool when you have complet
227
226
228
227
**Requirements:**
229
228
- Create the agent template file in ${AGENT_TEMPLATES_DIR}
229
+
- Always start the file with: import type { AgentConfig } from './types/agent-config'
230
230
- Use the AgentConfig interface
231
231
- Include appropriate tools based on the specialty
0 commit comments