summaryrefslogtreecommitdiff
path: root/packages/core/src/tools/shell.ts
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-06-09 08:57:30 -0700
committerGitHub <[email protected]>2025-06-09 08:57:30 -0700
commit87474e52d7e0f3abcaf74272b11c7b9244d98af5 (patch)
treee8ead2ce030823fda16af21a3deafe17c7116afa /packages/core/src/tools/shell.ts
parentc55a1d90120ff8b567e9059466819c4920dc560e (diff)
rename shell tool more intuitively as run_shell_command (from historical name of execute_bash_command inherited from terminal tool) (#869)
Diffstat (limited to 'packages/core/src/tools/shell.ts')
-rw-r--r--packages/core/src/tools/shell.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/core/src/tools/shell.ts b/packages/core/src/tools/shell.ts
index fea276ad..e1cde43b 100644
--- a/packages/core/src/tools/shell.ts
+++ b/packages/core/src/tools/shell.ts
@@ -30,7 +30,7 @@ import { spawn } from 'child_process';
const OUTPUT_UPDATE_INTERVAL_MS = 1000;
export class ShellTool extends BaseTool<ShellToolParams, ToolResult> {
- static Name: string = 'execute_bash_command';
+ static Name: string = 'run_shell_command';
private whitelist: Set<string> = new Set();
constructor(private readonly config: Config) {