2026-03-30 10:15:58 +00:00
|
|
|
import { createShellTool } from "./util"
|
2026-03-30 10:08:27 +00:00
|
|
|
|
2026-03-30 10:15:58 +00:00
|
|
|
export const PowershellTool = createShellTool(
|
|
|
|
|
"powershell",
|
|
|
|
|
"Windows PowerShell",
|
|
|
|
|
"avoid '&&' in this shell because Windows PowerShell 5.1 does not support it. Use PowerShell conditionals such as `cmd1; if ($?) { cmd2 }`",
|
|
|
|
|
)
|