fix(windows): remove powershell/cmd builtins and keep only programs

Andrey Nering created

Change summary

internal/llm/tools/safe.go | 3 ---
1 file changed, 3 deletions(-)

Detailed changes

internal/llm/tools/safe.go 🔗

@@ -74,14 +74,11 @@ func init() {
 		safeCommands = append(
 			safeCommands,
 			// Windows-specific commands
-			"dir",
 			"ipconfig",
 			"nslookup",
 			"ping",
 			"systeminfo",
 			"tasklist",
-			"type",
-			"ver",
 			"where",
 		)
 	}