DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Es — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
E

dsh-es

Es

基于 Everything 的 es.exe 索引,为 DeepSeek Harness 提供全磁盘 NTFS 文件发现功能,并支持兼容 POSIX 的路径输入和输出

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Rosmeowtis/dsh-es#d994878eb43ada1e0ddcbf7bf771f7506928f28e
README兼容性版本

兼容性与来源证明

Es 以 dsh-es 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/10

版本

0.1.0stable
2026/9/10

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/10
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Client Ui Git Graph@linxin666/dsh-client-ui-git-graph外部 dsh Web GUI 插件:空会话 Git 分支选择器和 Git 图,包含实际的主机端 Git 操作与防护,作为 dsh 配置文件包Doctor@linxin666/dsh-doctorDSH 配置档案的事务性救援模式,配备受监督的启动器、隔离的恢复容器、确定性修复、健康监控以及本地 Web 恢复控制台Ssh@linxin666/dsh-sshdsh Web GUI 的远程 SSH 操作:主机配置存储(~/.dsh/dsh-ssh.json,可从 ~/.ssh/config 导入)、支持跳板主机的持久化 ssh2 连接池、exec / PTY Web 终端 / SFTP 传输 / 本地端口转发隧道 / 集群执行Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。

README

dsh-es

Whole-disk NTFS file discovery for DeepSeek Harness, backed by Everything's index through es.exe.

The harness' own glob/grep are confined to the workspace. This plugin adds es_search, which answers "where on this machine is …" from the Everything index in milliseconds — across every indexed volume — and speaks POSIX paths in both directions, so a Windows backslash never has to survive a JSON/tool-call escape layer.

Requirements

  • Windows with Everything 1.4+ running (it owns the index; es.exe is only a client).
  • es.exe on PATH (ships with Everything; or point at it with config.executable).

Install

pnpm install
dsh plugin --profile web add .

Then restart the profile (dsh web). Restarting is required: the bundle layer is composed at boot. dsh plugin add records the dependency and appends dsh-es to dsh.profile.bundles automatically, because this package declares dsh.bundle.patch.

Verify the composed tree without booting:

dsh --profile web --dump-config | Select-String es-search

Configure

Defaults live in cordis.patch.yml. Override the row from your profile's own cordis.patch.yml (it is applied last):

- id: es-search
  config:
    executable: 'C:/Program Files/Everything/es.exe'
    maxResults: 500
KeyDefaultMeaning
executablees.exeBare name resolved on PATH, or an absolute path.
maxResults200Default page size when the model omits max (hard cap 1000).

The es_search tool

ParameterMeaning
query (required)Everything query text: plain words match the file name (space-separated words are ANDed), *.zip / report?.docx are wildcards, filters combine: ext:md handbook, size:>1gb ext:iso, dm:today folder:downloads, parent:D:/projects report.
pathRestrict to a folder and below, POSIX-style. Relative paths resolve against the session cwd.
maxPage size (default maxResults, hard cap 1000).
regexUse es.exe -r (Everything regex) instead of query syntax.
matchPathMatch the query against the whole path, not just the file name (es.exe -p).
kindany (default), files (/a-d), folders (/ad).
sortname, path, size, extension, date-modified, date-created, date-accessed, run-count, each with a -descending variant.

Returns { query, results, count, max, truncated }, results in POSIX form.

Path convention

DirectionExample
In (path)D:/ros/proj, /d/ros/proj (MSYS), //server/share/proj, D:\ros\proj are all accepted; relative resolves against the session cwd.
Out (results)D:/ros/proj/app.ts — forward slashes, drive letter kept.

The drive letter is kept rather than rewritten to /d/... on purpose: D:/x is a valid path for every other dsh tool (Node, PowerShell, read, edit, glob) on Windows, while /d/x is not, and rewriting would make results unusable as follow-up arguments.

Caveats

  • Index facts, not a live scan. A file created seconds ago may not be listed yet; Everything catches up from the NTFS USN journal within moments.
  • Everything must be running. Otherwise es.exe exits 8 with Error 8: Everything IPC window not found, surfaced verbatim as the tool error.
  • Regex is unreliable on Everything 1.4. With -r, anchored patterns such as zip$ return zero rows silently (exit 0) on a 1.4 install; prefer Everything wildcards (*.zip). Metacharacter-free patterns do work.
  • A query starting with - is read by es.exe as a switch; the tool rejects it up front with that hint. Search for such a name with a wildcard instead (*-report.txt).
  • Hits outside the workspace are readable only by tools allowed to reach them; the sandbox still applies to whatever you do next.
  • Volumes appear only if Everything indexes them (NTFS by default; exFAT/network folders must be added to its index).

How it runs

One ctx.subprocess.spawn per call with an argv vector — no shell, so nothing in a model-supplied query is quoted or interpreted — plus resolveExecutable for the es.exe lookup and the abort signal forwarded from the cooperative tool timeout (30 s). Exit 0 is success even with zero results; every other exit code becomes the tool error with es.exe's own first output line.

Verify

npm test

Covers the pure layer (path translation both ways, argv assembly, CRLF/BOM/duplicate-tolerant parsing) and one live es.exe round trip that skips itself when Everything or es.exe is unavailable. The spawn writes through a file descriptor rather than a pipe, so the check also runs under the harness' own Windows sandbox.