Skip to content

Commit 6b0ed76

Browse files
committed
remove unwanted outputs.
1 parent 5972e59 commit 6b0ed76

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

packages/agent/src/tools/system/shellMessage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

packages/agent/src/tools/system/shellStart.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

5155
const returnSchema = z.union([

0 commit comments

Comments
 (0)