File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -47,4 +47,15 @@ export const commandExecTool: ToolConfig<CommandInput, CommandOutput> = {
4747 shell : params . shell || '/bin/bash' ,
4848 } ) ,
4949 } ,
50+ } ,
51+
52+ outputs : {
53+ stdout : { type : 'string' , description : 'Standard output from the command' } ,
54+ stderr : { type : 'string' , description : 'Standard error from the command' } ,
55+ exitCode : { type : 'number' , description : 'Command exit code (0 = success)' } ,
56+ duration : { type : 'number' , description : 'Execution time in milliseconds' } ,
57+ command : { type : 'string' , description : 'The executed command' } ,
58+ workingDirectory : { type : 'string' , description : 'The directory where command was executed' } ,
59+ timedOut : { type : 'boolean' , description : 'Whether the command exceeded the timeout' } ,
60+ } ,
5061} ;
You can’t perform that action at this time.
0 commit comments