packages/coding-agent/docs/windows.md
Pi uses Git Bash by default on Windows. Checked locations (in order):
~/.pi/agent/settings.jsonC:\Program Files\Git\bin\bash.exe)bash.exe on PATH (Cygwin, MSYS2, WSL)For most users, Git for Windows is sufficient.
The optional powershell tool runs commands through pwsh.exe when available, otherwise Windows PowerShell. It starts PowerShell with -NoProfile -NonInteractive -ExecutionPolicy Bypass. Administrator-enforced execution policies can still take precedence.
Use defaultTools to replace the model-facing bash tool:
{
"defaultTools": ["read", "powershell", "edit", "write"]
}
Or enable both while comparing behavior:
{
"defaultTools": ["read", "bash", "powershell", "edit", "write"]
}
The ! and !! editor commands still use Bash.
{
"shellPath": "C:\\cygwin64\\bin\\bash.exe"
}