File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
packages/agent/src/tools/system Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ const parameterSchema = z.object({
5858 . boolean ( )
5959 . optional ( )
6060 . describe (
61- 'Whether to show the input in the logs (default: false or value from shellStart)' ,
61+ 'Whether to show the input to the user, or keep the output clean (default: false or value from shellStart)' ,
6262 ) ,
6363 showStdout : z
6464 . boolean ( )
6565 . optional ( )
6666 . describe (
67- 'Whether to show output in the logs (default: false or value from shellStart)' ,
67+ 'Whether to show output to the user, or keep the output clean (default: false or value from shellStart)' ,
6868 ) ,
6969} ) ;
7070
Original file line number Diff line number Diff line change @@ -41,11 +41,15 @@ const parameterSchema = z.object({
4141 showStdIn : z
4242 . boolean ( )
4343 . optional ( )
44- . describe ( 'Whether to show the command input in the logs (default: false)' ) ,
44+ . describe (
45+ 'Whether to show the command input to the user, or keep the output clean (default: false)' ,
46+ ) ,
4547 showStdout : z
4648 . boolean ( )
4749 . optional ( )
48- . describe ( 'Whether to show command output in the logs (default: false)' ) ,
50+ . describe (
51+ 'Whether to show command output to the user, or keep the output clean (default: false)' ,
52+ ) ,
4953} ) ;
5054
5155const returnSchema = z . union ( [
You can’t perform that action at this time.
0 commit comments