You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: sandbox mode "workspace-write" is requested but no sandbox backend is usable on this host; refusing to run the command unconfined. Install bubblewrap or run a Landlock-enforcing kernel (Linux), ensure sandbox-exec is usable (macOS), or ensure the ACL restricted-token runner can start (Windows) -- otherwise switch the consumer to danger-full-access. Runner failure: windows-acl-run: --temp is not an existing directory: C:\Users\m1354\AppData\Local\Temp\dsh-2hxmDi
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
环境
@deepseek-ai/dsh)完整图文报告(共 9 条,含 npm / Claude Code 生态 4 条,本文仅节选 DSH 相关 5 条):
https://guokaile.github.io/bug-feedback-report/
BUG-1(P0 崩溃级)沙箱临时目录被清理后崩溃且不自愈
Remove-Item 'C:\Users\<用户名>\AppData\Local\Temp\*' -Recurse -Force(常规清理操作,会一并删除沙箱运行器自建的Temp\dsh-XXXXXX目录)npx @deepseek-ai/dsh webdsh-2hxmDi完全不变,证明该目录是会话级固定路径,删除后不会重建。清理前崩溃链路上的 dsh-subprocess 日志目录同样位于 Temp 下,一并被删除后相关子进程日志写入即报 ENOENT。C:\Users\m1354\AppData\Local\Temp\dsh-2hxmDi后,沙箱立即恢复--temp执行 mkdir -p,或每次命令生成新的随机目录名;② 沙箱自身状态目录移出共享%TEMP%(建议放入专用目录,如 DSH_HOME 下);③ 报错信息明确指出缺失的具体路径,而非笼统的 "no sandbox backend is usable"BUG-2(P2 诊断体验)PowerShell 的 SilentlyContinue 会吞掉沙箱拒绝标记
-ErrorAction SilentlyContinue;对比去掉该参数后的输出[sandbox: file access denied under ...]都应输出[exit code: 1],无法区分「沙箱拒绝」与「Windows ACL 拒绝」,导致一次误判(把 OS 权限问题当成沙箱问题尝试提权)BUG-3(P1)受限令牌拦截 WMI/CIM 与端口查询,磁盘容量等只读信息无法获取
Get-Volume -DriveLetter C;②Get-NetTCPConnection -LocalPort 3080;③Get-PSDrive CBUG-4(P1)沙箱内 UAC 提权静默失败:无弹窗、无报错、命令未执行
Start-Process powershell -Verb RunAs -Wait -ArgumentList '-NoProfile','-Command','Remove-Item -LiteralPath ''C:\Windows\SoftwareDistribution\Download\*'' -Recurse -Force -ErrorAction SilentlyContinue'Start-Process cmd -Verb RunAs -Wait -ArgumentList '/c','rd /s /q "C:\Windows\SoftwareDistribution\Download"'BUG-5(P2)执行器前导代码在受限语言模式下报错,每条命令产生固定噪音
反馈人:@guokaile · 2026-08-14 实测记录整理 · 环境参数经
node -v/npm -v/ 注册表实测核实All reactions