-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathrunTerminalCommand.ts
More file actions
394 lines (346 loc) · 11.4 KB
/
runTerminalCommand.ts
File metadata and controls
394 lines (346 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
import { ChildProcess, spawn } from "child_process";
import fs from "fs";
import {
evaluateTerminalCommandSecurity,
type ToolPolicy,
} from "@continuedev/terminal-security";
import { backgroundJobService } from "../services/BackgroundJobService.js";
import { services } from "../services/index.js";
import { telemetryService } from "../telemetry/telemetryService.js";
import {
isGitCommitCommand,
isPullRequestCommand,
} from "../telemetry/utils.js";
import { backgroundSignalManager } from "../util/backgroundSignalManager.js";
import { emitBashToolEnded, emitBashToolStarted } from "../util/cli.js";
import {
parseEnvNumber,
truncateOutputFromStart,
} from "../util/truncateOutput.js";
import { Tool, ToolRunContext } from "./types.js";
// Output truncation defaults
const DEFAULT_BASH_MAX_CHARS = 50000; // ~12.5k tokens
const DEFAULT_BASH_MAX_LINES = 1000;
/**
* When running on Windows, but inside WSL, shell commands need to run using the WSL environment.
*/
export function isRunningInWsl(): boolean {
// WSL only applies when platform reports as Linux
if (process.platform !== "linux") {
return false;
}
if (process.env.WSL_DISTRO_NAME) {
return true;
}
// Check /proc/version for Microsoft/WSL indicators
try {
const procVersion = fs.readFileSync("/proc/version", "utf8").toLowerCase();
return procVersion.includes("microsoft") || procVersion.includes("wsl");
} catch {
return false;
}
}
function getBashMaxChars(): number {
return parseEnvNumber(
process.env.CONTINUE_CLI_BASH_MAX_OUTPUT_CHARS,
DEFAULT_BASH_MAX_CHARS,
);
}
function getBashMaxLines(): number {
return parseEnvNumber(
process.env.CONTINUE_CLI_BASH_MAX_OUTPUT_LINES,
DEFAULT_BASH_MAX_LINES,
);
}
// Helper function to use login shell on Unix/macOS and PowerShell on Windows and available shell in WSL
export function getShellCommand(command: string): {
shell: string;
args: string[];
} {
if (process.platform === "win32") {
// Windows: Use PowerShell
return {
shell: "powershell.exe",
args: ["-NoLogo", "-ExecutionPolicy", "Bypass", "-Command", command],
};
}
if (isRunningInWsl()) {
// in WSL, bash is always available
const wslShell = process.env.SHELL || "/bin/bash";
return {
shell: wslShell,
args: shellSupportsLoginFlag(wslShell)
? ["-l", "-c", command]
: ["-c", command],
};
}
// Unix/macOS: Use login shell to source .bashrc/.zshrc etc.
const userShell = process.env.SHELL || "/bin/bash";
return {
shell: userShell,
args: shellSupportsLoginFlag(userShell)
? ["-l", "-c", command]
: ["-c", command],
};
}
function shellSupportsLoginFlag(shell: string): boolean {
const shellName = shell.split(/[\\/]/).pop()?.toLowerCase();
return shellName !== "csh" && shellName !== "tcsh";
}
export function runCommandInBackground(command: string): {
success: boolean;
jobId?: string;
error?: string;
} {
const job = backgroundJobService.createJob(command);
if (!job) {
return {
success: false,
error: "Cannot create background job: limit of 5 concurrent jobs reached",
};
}
const { shell, args } = getShellCommand(command);
const child = backgroundJobService.startJob(job.id, shell, args);
if (!child) {
return {
success: false,
error: `Failed to start background job ${job.id}`,
};
}
return {
success: true,
jobId: job.id,
};
}
export const runTerminalCommandTool: Tool = {
name: "Bash",
displayName: "Bash",
description: `Executes a terminal command and returns the output
Commands are automatically executed from the current working directory (${process.cwd()}), so there's no need to change directories with 'cd' commands.
IMPORTANT: To edit files, use Edit/MultiEdit tools instead of bash commands (sed, awk, etc).
`,
parameters: {
type: "object",
required: ["command"],
properties: {
command: {
type: "string",
description: "The command to execute in the terminal.",
},
timeout: {
type: "number",
description:
"Optional timeout in seconds (max 600). Use this parameter for commands that take longer than the default 180 second timeout.",
},
},
},
readonly: false,
isBuiltIn: true,
evaluateToolCallPolicy: (
basePolicy: ToolPolicy,
parsedArgs: Record<string, unknown>,
): ToolPolicy => {
return evaluateTerminalCommandSecurity(
basePolicy,
parsedArgs.command as string,
);
},
preprocess: async (args) => {
const command = args.command;
if (!command || typeof command !== "string") {
throw new Error("command arg is required and must be a non-empty string");
}
const truncatedCmd =
command.length > 60 ? command.substring(0, 60) + "..." : command;
return {
args,
preview: [
{
type: "text",
content: `Will run: ${truncatedCmd}`,
},
],
};
},
run: async (
{
command,
timeout,
}: {
command: string;
timeout?: number;
},
context?: ToolRunContext,
): Promise<string> => {
// Divide limits by parallel tool call count to avoid context overflow
const parallelCount = context?.parallelToolCallCount ?? 1;
const baseMaxChars = getBashMaxChars();
const baseMaxLines = getBashMaxLines();
const maxChars = Math.floor(baseMaxChars / parallelCount);
const maxLines = Math.floor(baseMaxLines / parallelCount);
emitBashToolStarted();
const terminalOutput: string = await new Promise((resolve, reject) => {
// Use same shell logic as core implementation
const { shell, args } = getShellCommand(command);
const child = spawn(shell, args);
let stdout = "";
let stderr = "";
let timeoutId: NodeJS.Timeout;
let isResolved = false;
// Determine timeout: use provided timeout (capped at 600s), test env variable, or default 120s
let TIMEOUT_MS = 180000; // 180 seconds default
if (timeout !== undefined) {
// Cap at 600 seconds (10 minutes)
const cappedTimeout = Math.min(timeout, 600);
TIMEOUT_MS = cappedTimeout * 1000;
} else if (
process.env.NODE_ENV === "test" &&
process.env.TEST_TERMINAL_TIMEOUT
) {
TIMEOUT_MS = parseInt(process.env.TEST_TERMINAL_TIMEOUT, 10);
}
/**
* Appends a note about reduced limits when parallel tool calls are in effect.
*/
const appendParallelLimitNote = (output: string): string => {
if (parallelCount > 1) {
return (
output +
`\n\n(Note: output limit reduced due to ${parallelCount} parallel tool calls. ` +
`Single-tool limit: ${baseMaxChars.toLocaleString()} characters or ${baseMaxLines.toLocaleString()} lines.)`
);
}
return output;
};
const moveToBackground = () => {
if (isResolved) return;
isResolved = true;
if (timeoutId) {
clearTimeout(timeoutId);
}
backgroundSignalManager.off("backgroundRequested", moveToBackground);
// Detach stdout/stderr listeners so they don't accumulate in local
// buffers or trigger chat history updates after the tool call resolves.
// BackgroundJobService.createJobWithProcess attaches its own listeners.
child.stdout.removeListener("data", onStdout);
child.stderr.removeListener("data", onStderr);
const job = backgroundJobService.createJobWithProcess(
command,
child as ChildProcess,
stdout,
);
if (job) {
const truncationResult = truncateOutputFromStart(stdout, {
maxChars,
maxLines,
});
const outputSoFar = truncationResult.wasTruncated
? appendParallelLimitNote(truncationResult.output)
: truncationResult.output;
resolve(
`Command moved to background. Job ID: ${job.id}\nOutput so far:\n${outputSoFar}\nUse CheckBackgroundJob("${job.id}") to check status.`,
);
} else {
resolve(
`Failed to move to background (job limit reached). Command continues in foreground.\nOutput so far: ${stdout}`,
);
}
};
backgroundSignalManager.on("backgroundRequested", moveToBackground);
const resetTimeout = () => {
if (timeoutId) {
clearTimeout(timeoutId);
}
timeoutId = setTimeout(() => {
if (isResolved) return;
isResolved = true;
child.kill();
let output = stdout + (stderr ? `\nStderr: ${stderr}` : "");
output += `\n\n[Command timed out after ${TIMEOUT_MS / 1000} seconds of no output]`;
const truncationResult = truncateOutputFromStart(output, {
maxChars,
maxLines,
});
const finalOutput = truncationResult.wasTruncated
? appendParallelLimitNote(truncationResult.output)
: truncationResult.output;
resolve(finalOutput);
}, TIMEOUT_MS);
};
const showCurrentOutput = () => {
if (!context?.toolCallId) return;
try {
const currentOutput = stdout + (stderr ? `\nStderr: ${stderr}` : "");
services.chatHistory.addToolResult(
context.toolCallId,
currentOutput,
"calling",
);
} catch {
// Ignore errors during streaming updates
}
};
// Start the initial timeout
resetTimeout();
const onStdout = (data: Buffer) => {
stdout += data.toString();
resetTimeout();
showCurrentOutput();
};
const onStderr = (data: Buffer) => {
stderr += data.toString();
resetTimeout();
showCurrentOutput();
};
child.stdout.on("data", onStdout);
child.stderr.on("data", onStderr);
child.on("close", (code) => {
if (isResolved) return;
isResolved = true;
if (timeoutId) {
clearTimeout(timeoutId);
}
backgroundSignalManager.removeListener(
"backgroundRequested",
moveToBackground,
);
// Only reject on non-zero exit code if there's also stderr
if (code !== 0 && stderr) {
reject(`Error (exit code ${code}): ${stderr}`);
return;
}
// Track specific git operations only after successful execution
if (code === 0) {
if (isGitCommitCommand(command)) {
telemetryService.recordCommitCreated();
} else if (isPullRequestCommand(command)) {
telemetryService.recordPullRequestCreated();
}
}
let output = stdout;
if (stderr) {
output = stdout + `\nStderr: ${stderr}`;
}
const truncationResult = truncateOutputFromStart(output, {
maxChars,
maxLines,
});
const finalOutput = truncationResult.wasTruncated
? appendParallelLimitNote(truncationResult.output)
: truncationResult.output;
resolve(finalOutput);
});
child.on("error", (error) => {
if (isResolved) return;
isResolved = true;
if (timeoutId) {
clearTimeout(timeoutId);
}
backgroundSignalManager.off("backgroundRequested", moveToBackground);
reject(`Error: ${error.message}`);
});
});
emitBashToolEnded();
return terminalOutput;
},
};