We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f4890e commit a2cb695Copy full SHA for a2cb695
backend/src/templates/agents/file-explorer.ts
@@ -1,3 +1,4 @@
1
+import { AgentTemplateTypes } from '@codebuff/common/types/session-state'
2
import { z } from 'zod/v4'
3
4
import type { AgentTemplate } from '../types'
@@ -11,7 +12,7 @@ const paramsSchema = z.object({
11
12
})
13
14
export const fileExplorer = {
- id: 'file_explorer',
15
+ id: AgentTemplateTypes.file_explorer,
16
displayName: 'Dora the File Explorer',
17
parentPrompt:
18
'Spawns multiple file picker agents in parallel to comprehensively explore the codebase from different perspectives',
0 commit comments