dsh-unsandboxed-winbash
Verifieddsh-unsandboxed-winbash · v0.1.1 · MIT
Adds a Git Bash (MSYS2) tool to dsh on Windows. Git Bash cannot start under the harness file sandbox (its MSYS runtime needs a named pipe the restricted token refuses), so this tool spawns it outside the sandbox and says so in its own description. pwsh, t
Install
dsh plugin add dsh-unsandboxed-winbash Confirm the layer applied with dsh --profile default --dump-config — see the install guide.
Source
Tags
Readme
dsh-unsandboxed-winbash
Windows 上的 Git Bash(MSYS2)工具插件。它向会话新增一个 winbash 工具,直接以 Git for Windows 的 bash 执行命令并修好 MSYS 的 PATH;命令在文件沙箱之外执行,工具描述也写明了这一点。
为什么需要它
Windows 上 dsh 不提供任何 bash 工具:@deepseek-ai/dsh-base 在 win32 上同时禁用了 dsh-bash-sandbox 与 dsh-tool-bash。手工打开也无效,因为 Windows 沙箱装不下 MSYS2——受限 token 拒绝创建 MSYS 信号处理所需的命名管道。以下为 Windows 11 + dsh 0.1.5-rc.1 的沙箱内实测:
| 尝试 | 结果 |
|---|---|
bash -c(PATH 解析到 C:\Windows\System32\bash.exe) |
Bash/Service/CreateInstance/E_ACCESSDENIED |
wsl.exe -e bash -c |
Wsl/Service/CreateInstance/E_ACCESSDENIED |
C:\Program Files\Git\usr\bin\bash.exe -c |
fatal error - couldn't create signal pipe, Win32 error 5 |
功能
- 新增
winbash工具:以bash -c执行命令,返回 stdout、stderr 与退出码;非零退出按结果上报,不作为工具错误。 - Git Bash 自动发现:
usr\bin\bash.exe(真实 MSYS2)优先于bin\bash.exe包装器,按 Git for Windows 的常见安装位置查找;bashPath可显式指定。 - PATH 修复:把 Git 的
usr\bin、mingw64\bin、cmd前置。Windows 的PATH通常只有Git\cmd,不前置时ls、grep、sed、awk、find、sleep、wc全部command not found。 - 有界输出:保留
maxOutputBytes窗口,超出部分写入 spill 文件并在结果里给出路径;多字节边界不会被截断成乱码。 - 环境擦除:复用
@deepseek-ai/dsh-subprocess的scrubbedParentEnv,只转发dshEnv与 Git 需要的变量。 - 超时与中断:deadline 到期或调用被中止时按整树终止(
taskkill /T /F)。Windows 上子进程被杀后 stdio 管道不保证关闭,因此在exit上结算,并用drainMs有界排空。 - 后台任务:
run_in_background走宿主的ctx.jobs注册表,可增量读取输出。 - 命令内部一律显式调用 Git Bash,不用裸
bash:Windows 上它解析到 WSL shim,是另一个 shell。
安装
# 从 npm 安装并注册到 web profile(推荐)
dsh plugin --profile web add dsh-unsandboxed-winbash
# 仅下载 npm package
npm install dsh-unsandboxed-winbash
# 或从 GitHub 安装
dsh plugin --profile web add github:xswt442-cmd/dsh-unsandboxed-winbash
包内声明了 dsh.bundle,bundle 补丁自行挂载工具行,无需手工改 cordis.patch.yml。安装后重启 DSH Web 生效。
配置
- insert:
- id: tool-winbash
name: dsh-unsandboxed-winbash/tool
config:
bashPath: '' # 显式指定 Git Bash 路径(默认自动发现)
gitPathPrefix: true # 把 Git 的 usr\bin / mingw64\bin / cmd 前置到 PATH
extraPath: '' # 额外 PATH 前缀,';' 分隔(排在最前)
drainMs: 250 # 子进程退出后等待输出排空的上限
timeoutMs: 120000 # 命令默认超时
maxTimeoutMs: 600000
maxOutputBytes: 64000
maxSpillBytes: 67108864
enableRunInBackground: true
Git Bash 自动发现顺序:%ProgramFiles%\Git\usr\bin\bash.exe → %ProgramFiles%\Git\bin\bash.exe → %LOCALAPPDATA%\Programs\Git\usr\bin\bash.exe → %ProgramFiles(x86)%\Git\...。找不到且未配置 bashPath 时,只在调用 winbash 时报错,挂载本身不失败。
安全与边界
- 命令在文件沙箱之外执行:MSYS 无法在 ACL 受限 token 下启动,这是本插件存在的前提。工具描述里写明,且不提供
sandbox_permissions升级面——没有可升级的起点。 - 不替换任何服务,只新增一个工具:
pwsh、权限预设、/permission命令与fs工具仍受各自的沙箱与审批策略约束。 - 需要受限、可审计的文件改动请用
fs工具。 - 命令内的凭证类环境变量(
*KEY*、*TOKEN*、*SECRET*、*PASSWORD*)不传给子进程;dshEnv与 Git 需要的变量除外。 - 超时或被中止时按整树终止;后台任务在宿主退出时同步清理进程树。
平台与兼容性
| 项目 | 要求 |
|---|---|
| 平台 | Windows(win32) |
| DSH | >=0.1.5-rc.1 |
| Node.js | >=20 |
| 依赖 | Git for Windows(提供 Git Bash) |
其他平台不需要本插件:dsh-tool-bash 与 dsh-bash-sandbox 在非 win32 上默认启用。
开发与验证
test/exec.test.mjs 会启动真实 Git Bash 并写 spill 文件,必须在非沙箱 shell 中运行。修改后运行:
npm test # 纯单元,沙箱内亦可
npm run test:e2e # 需要非沙箱 shell
npm run docs:check
npm pack --dry-run