Back to home@Pasumao

dsh-plugin-windows-guard

DeepSeek Harness (dsh) Windows 环境防坑守则 skill 插件(纯数据):编码/转义/路径/进程/乱码预防规则,无修复工具

Stars
0
Language
JavaScript
Created
Aug 25, 2026
Updated
Aug 25, 2026

Introduction

dsh-plugin-windows-guard

DeepSeek Harness (dsh) 的 Windows 环境防坑守则插件(纯数据,零代码逻辑)。

把本机 255 个会话归档里反复出现的 Windows 高频坑,沉淀成「一次写对」的 预防性守则,以两个 skill 形式自动加载给 agent——不是修复工具,是行为规则: 让模型在写 PowerShell、读文件、处理编码/路径/进程/端口问题前先看到防坑清单。

纯技能载体(对标 dsh-plugin-dev-kb):lib/index.js 只有约 40 行注册代码, 全部内容在 skills/ 目录。零运行时依赖、零构建。

功能

按触发场景拆成两个自包含技能(<available_skills> 按 description 匹配自动加载正文):

windows-enc —— 编码与 PowerShell 解析(命令/文件内容出错类)

章节内容来源问题(历史实录)
1 环境事实卡pwsh 5.1/7 差异、-Command 单 argv 无 shell 转义层、OutputEncoding 已钉、退出码权威stderr 误判(git 红色进度、NativeCommandError)
2 编码三铁律读必带 -Encoding UTF8;写结构化文件用 WriteAllText(UTF8Encoding($false));查 BOM/转码命令模板GBK 误解码(鎻掍欢/鈥?)、BOM 写坏 package.json(启动事故二)、UTF-16 写坏
3 引号转义速查PS '' 转义(反斜杠无效)、双引号插值、node -e/python -c 引号地狱 → 写临时文件SyntaxError: unterminated string literal、实测引号嵌套失败
4 乱码三不原则乱码特征表(鈥?/??OK??/\uFFFD)+ 不猜/不引用/先重读??OK????? skill ???? 乱码当答案

windows-sys —— 系统环境(排查类)

章节内容来源问题
1 路径与文件系统MAX_PATH/长路径、空格路径、EACCES/EBUSY 文件占用、junction 与 link: realpath、路径格式EACCES: realpath '...sock'、npm-cache 深层路径
2 进程与端口netstat 查端口、Stop-Process/taskkill、先查后杀3080/39090 端口占用、孤儿进程
3 跨平台杂项CRLF 陷阱、.cmd 脚本宿主/ExecutionPolicy、时区、大小写小说文件 CRLF 检查、run.bat chcp 65001

安装

# 本地 link 开发(本仓库):
git clone https://github.com/Pasumao/dsh-plugin-windows-guard.git D:\dsh\plugins\dsh-plugin-windows-guard
#   1. profile package.json dependencies 加
#      "dsh-plugin-windows-guard": "link:D:/dsh/plugins/dsh-plugin-windows-guard"
#   2. 加入 dsh.profile.bundles(或 cordis.patch.yml 手动 insert)
cd C:\Users\18303\.dsh\profiles\web
pnpm install
node D:\dsh\scripts\check-profile.mjs          # 自检 [PASS] 再重启
powershell -NoProfile -ExecutionPolicy Bypass -File D:\dsh\scripts\restart-dsh.ps1

# npm 分发安装(发布后):
npm install dsh-plugin-windows-guard --prefix C:\Users\18303\.dsh\profiles\web
# 并在 profile 包/补丁中挂载,其余同上

使用

安装后无需任何配置。模型遇到 Windows 命令/编码/乱码/路径/进程/端口任务时, skill({ name: "windows-enc" | "windows-sys" }) 自动加载对应守则;也可手动让模型 加载查看全文。

用户:读一下 D:\dsh\config\comfy_prompt.json 看看配置
模型:读取前先按守则用 Get-Content -Encoding UTF8……

配置/示例

无需任何配置:挂载后即生效,无 API key、无 token、无配置文件。示例:

用户:读一下 D:\dsh\config\comfy_prompt.json 看看配置
模型:读取前先按守则用 Get-Content -Encoding UTF8……

更完整的使用说明见上方「使用」节。

为何拆成两个(设计说明)

  • 常驻目录成本:两条 description(~300 token)几乎不涨;
  • 触发精度windows-enc 管「命令/文件内容出错」(编码/转义/乱码), windows-sys 管「系统环境排查」(路径/进程/端口/跨平台),边界清晰、互不牵连;
  • 正文按需减半:Windows「内容出错」类任务不再加载「系统环境」整章;
  • 预留给未来主题(WSL/winget/容器…)归入 windows-sys 扩展。

实现说明

  • 注册走 ctx.skills.register(官方 skill 子系统),content 为 SKILL.md 正文;
  • 无工具、无命令、无服务端逻辑、无文件写入——纯预防性指令;
  • skill 正文改动需重启 dsh(host 插件 apply 时读取 skills/ 目录)。

相关插件

已发布插件互相引用(更多 DSH 插件生态):