@@ -17,7 +17,6 @@ export async function collectArgs() {
1717 agent : { type : 'string' , short : 'a' } ,
1818 verbose : { type : 'boolean' , default : false , short : 'v' } ,
1919 storybook : { type : 'boolean' , short : 's' } ,
20- description : { type : 'string' , short : 'd' } ,
2120 context : { type : 'string' , short : 'c' } ,
2221 upload : { type : 'boolean' , short : 'u' } ,
2322 } ,
@@ -45,7 +44,6 @@ export async function collectArgs() {
4544 v . union ( [ v . literal ( 'claude-code' ) , v . literal ( 'copilot' ) ] ) ,
4645 ) ,
4746 verbose : v . boolean ( ) ,
48- description : v . optional ( v . string ( ) ) ,
4947 storybook : v . optional ( v . boolean ( ) ) ,
5048 upload : v . optional ( v . boolean ( ) ) ,
5149 context : v . optionalAsync (
@@ -162,29 +160,6 @@ export async function collectArgs() {
162160 rerunCommandParts . push ( '--agent' , result . toString ( ) ) ;
163161 return result ;
164162 } ,
165- description : async function ( ) : Promise < string | undefined > {
166- if ( parsedArgValues . description !== undefined ) {
167- rerunCommandParts . push (
168- '--description' ,
169- `"${ parsedArgValues . description } "` ,
170- ) ;
171- return parsedArgValues . description ;
172- }
173-
174- const result = await p . text ( {
175- message :
176- 'Can you provide a short description for this specific experiment?' ,
177- placeholder :
178- 'This description is optional and can help provide context for the experiment results.' ,
179- } ) ;
180- if ( p . isCancel ( result ) ) {
181- p . cancel ( 'Operation cancelled.' ) ;
182- process . exit ( 0 ) ;
183- }
184-
185- rerunCommandParts . push ( '--description' , `"${ result } "` ) ;
186- return result ;
187- } ,
188163 context : async function ( ) : Promise < Context > {
189164 const evalPath = path . resolve ( path . join ( 'evals' , evalPromptResult ) ) ;
190165
@@ -473,7 +448,6 @@ export async function collectArgs() {
473448 const result = {
474449 agent : promptResults . agent ,
475450 verbose : promptResults . verbose ,
476- description : promptResults . description ,
477451 eval : evalPromptResult ,
478452 context : promptResults . context ,
479453 storybook : parsedArgValues . storybook ,
0 commit comments