You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Run a command on this "+os.platform()+" machine",
46
-
inputSchema: {
47
-
type: "object",
48
-
properties: {
49
-
command: {
50
-
type: "string",
51
-
description: "Command with args",
52
-
},
53
-
workdir: {
54
-
// previous run_command calls can probe the filesystem and find paths to change to
55
-
type: "string",
56
-
description: "Optional, current working directory",
57
-
},
58
-
stdin: {
59
-
type: "string",
60
-
description:
61
-
"Optional, text to pipe into the command's STDIN. For example, pass a python script to python3. Or, pass text for a new file to the cat command to create it!",
62
-
},
63
-
// args to consider:
64
-
// - env - obscure cases where command takes a param only via an env var?
"Run a command on this "+os.platform()+" machine",
20
+
inputSchema: {
21
+
type: "object",
22
+
properties: {
23
+
command: {
24
+
type: "string",
25
+
description: "Command with args",
26
+
},
27
+
workdir: {
28
+
// previous run_command calls can probe the filesystem and find paths to change to
29
+
type: "string",
30
+
description:
31
+
"Optional, current working directory",
32
+
},
33
+
stdin: {
34
+
type: "string",
35
+
description:
36
+
"Optional, text to pipe into the command's STDIN. For example, pass a python script to python3. Or, pass text for a new file to the cat command to create it!",
37
+
},
38
+
// args to consider:
39
+
// - env - obscure cases where command takes a param only via an env var?
0 commit comments