We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7142397 commit 8a309f7Copy full SHA for 8a309f7
agents/base2/base2.ts
@@ -65,7 +65,8 @@ export function createBase2(
65
'set_output',
66
),
67
spawnableAgents: buildArray(
68
- 'file-picker',
+ !isMax && 'file-picker',
69
+ isMax && 'file-picker-max',
70
'code-searcher',
71
'directory-lister',
72
'glob-matcher',
agents/file-explorer/file-picker-max.ts
@@ -0,0 +1,9 @@
1
+import { createFilePicker } from './file-picker'
2
+import { type SecretAgentDefinition } from '../types/secret-agent-definition'
3
+
4
+const definition: SecretAgentDefinition = {
5
+ id: 'file-picker-max',
6
+ ...createFilePicker('max'),
7
+}
8
9
+export default definition
0 commit comments