avaritiachaos
dsh-plugin-windows
No description
- Stars
- 0
- Language
- TypeScript
- Created
- Aug 15, 2026
- Updated
- Aug 15, 2026
Introduction
@shion-lab/dsh-plugin-windows
Windows cross-platform compatibility, process tree termination (
taskkill /T), path normalization, and encoding buffer guards for DeepSeek Harness (dsh).
🌟 Problems Solved for Windows Users
When running AI coding agents natively on Windows, developers frequently face three platform-specific issues:
- Zombie Orphaned Processes:
child_process.kill()fails to terminate sub-processes spawned by shells (e.g.webpack-dev-server,python, background workers), locking ports and files. This plugin enforces recursive process tree termination viataskkill /F /T /PID. - Path Normalization & Extended-Length Prefixes: Resolves Windows drive letter cases (
d:\vsD:/), strips\\?\UNC prefixes, and normalizes paths for cross-platform regex and glob matches. - Encoding & BOM Cleansing: Automatically handles UTF-8 BOM headers (
\uFEFF) and CRLF line endings, avoiding garbled terminal output.
📦 Installation
npm install -g @shion-lab/dsh-plugin-windows
🚀 Usage in cordis.yml
plugins:
"@deepseek-ai/dsh": {}
"@shion-lab/dsh-plugin-windows":
forceUtf8: true
enableProcessTreeGuard: true
📄 License
MIT © Shion Lab