From 7087c0508ea9260abaa31b0cd8f206d3b11cf21b Mon Sep 17 00:00:00 2001 From: Olcan Date: Fri, 25 Apr 2025 14:05:58 -0700 Subject: more consistent confirmations, TODO to improve write confirmations, drop "description" from execution confirmation, add confirmation to new (still dummy) shell tool (#176) --- packages/server/src/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/server/src/config') diff --git a/packages/server/src/config/config.ts b/packages/server/src/config/config.ts index 8a49380c..498c7257 100644 --- a/packages/server/src/config/config.ts +++ b/packages/server/src/config/config.ts @@ -147,7 +147,7 @@ function createToolRegistry(config: Config): ToolRegistry { // use ShellTool (next-gen TerminalTool) if environment variable is set if (process.env.SHELL_TOOL) { - tools.push(new ShellTool(targetDir, config)); + tools.push(new ShellTool(config)); } else { tools.push(new TerminalTool(targetDir, config)); } -- cgit v1.2.3