DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-file-reference-everything

File Reference Everything

DeepSeek Harness 的全磁盘 ctx.fileReferences 提供程序:基于 Everything 的即时搜索,配备有界的跨平台备用索引、模糊匹配和正则表达式查询

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lumose0/dsh-file-reference-everything#4c06e65a09b0b03ce23963a33719fc25ac43c2a8
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/28

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-file-reference-everything

English | 中文

Whole-disk implementation of ctx.fileReferences for DeepSeek Harness. It upgrades the dialog's @ file completion from "current workspace" to "any file on the machine": when Everything is running, bare queries are answered in milliseconds through the es.exe command-line client; otherwise the plugin falls back to its own bounded whole-disk index. The fallback index works on macOS and Linux too, so the plugin is cross-platform. Workspace results are always merged in and ranked ahead of whole-disk hits.

Requirements

Best experience — all three on Windows:

  • Everything installed and running.
  • es.exe discoverable: on PATH, in a common install location (official installer, %LOCALAPPDATA%\Everything, chocolatey, scoop), or pointed at by the esPath config key.
  • Windows (Everything indexes NTFS in real time).

Without any of these the plugin still works: it detects the missing backend automatically and serves whole-disk queries from its built-in bounded scan index instead.

Note on installing the dsh CLI itself: prefer pnpm (e.g. pnpm add -g @deepseek-ai/dsh, or pnpm add @deepseek-ai/dsh in a dedicated directory). In real installs, npm/npx stalls for a long time (>10 minutes) resolving this package's large peer-dependency set.

Installation

Install from GitHub into the web profile (recommended):

dsh plugin --profile web add github:lumose0/dsh-file-reference-everything

dsh's Web UI is its own profile (dsh web ≡ dsh --profile web), and the @ file completion UI lives only there; the official file-reference-local row also exists only in the web profile. Installing into another profile works too, but --dump-config then prints the expected warning patch: entry "file-reference-local" not found — harmless; the plugin's own row is inserted regardless.

A git install fetches sources, not built artifacts; this package ships a prepare script that builds lib/ from source at install time. pnpm ≥ 10 refuses to run that script until you allow it — the first add fails and prints the package key to copy into the profile's pnpm-workspace.yaml:

allowBuilds:
  dsh-file-reference-everything: true

then re-run the add. That allowance is permission to execute this package's code on your machine at install time, so review the source and pin a commit (github:lumose0/dsh-file-reference-everything#<sha>) so a later push cannot silently change what runs. Once the package is published to npm, dsh plugin --profile web add dsh-file-reference-everything installs prebuilt code and needs no build allowance.

How it takes effect

The package is a dsh bundle: its cordis.patch.yml layer disables the official workspace-only provider row (id: file-reference-local, the same row id the dsh-web-app bundle inserts) and inserts this plugin's row in its place. If the profile has no such row (a non-web profile), the disable patch warns and is skipped, and this provider still mounts. Verify the composed layers without booting:

dsh --profile web --dump-config

The output should contain a # == dsh-file-reference-everything layer with the file-reference-everything row inserted; in the web profile the official file-reference-local row shows disabled: true.

Query syntax

Everything after @ (or @" for paths containing spaces) is the query. Outside regex mode, \ counts as /.

QueryBehavior
@config (bare text)Fuzzy search over the workspace index merged with the whole-disk backend; workspace hits rank first.
@re:pattern / @regex:patternRegular-expression match, workspace and whole-disk.
@D:/..., @//server/share/..., @/usr/..., @~/...Browse that absolute directory (~ expands to the home directory).
@src/comp (relative path containing /)Browse relative to the agent cwd, same as the official provider.

When Everything answers, bare queries pass through as Everything native syntax: space means AND, wildcards and the rest of the Everything search syntax work as-is.

Configuration

KeyDefaultContract
maxResults20Maximum ranked candidates returned for one query.
workspaceMaxEntries10000Maximum indexed files and directories per agent workspace.
globalMaxEntries200000Maximum indexed files and directories in the whole-disk fallback index.
excludedDirectories[".git", "node_modules", "$Recycle.Bin", "System Volume Information", "Windows", "Program Files", "Program Files (x86)", "ProgramData", "AppData", ".cache", ".npm", ".pnpm-store", "Library", "proc", "sys", "dev"]Directory basenames never traversed or offered by the fallback index.
roots[]Whole-disk scan roots; empty selects automatic detection — every existing drive letter on Windows, the home directory elsewhere.
esPathunsetExplicit es.exe path; unset enables automatic detection (PATH, then common install locations).
everythingTimeoutMs2000Timeout in milliseconds for one es.exe invocation; a timeout falls back to the built-in index.
refreshSeconds600Seconds the whole-disk fallback index stays fresh before the next query triggers a lazy rebuild.
workspaceBonus100Additive score keeping workspace candidates ahead of whole-disk hits in merged results.

Override the row in the profile's cordis.patch.yml (applied after every bundle layer):

- id: file-reference-everything
  name: dsh-file-reference-everything
  config:
    maxResults: 30
    roots: ['C:/', 'D:/']

A patch replaces the row's entire config value rather than deep-merging keys, so restate every non-default key you want; keys you omit take the schema defaults above.

Model Experience

File-reference guidance when read is available

What the model sees

When the addressed agent has an effective read tool, the provider contributes the same stable system-prompt section as the official provider:

Paths prefixed with @ are files explicitly referenced by the user. Use the read tool when their contents are needed; do not claim to have inspected a file before reading it.

Token effect

Conditional and fixed: the one sentence is present while read is visible to the addressed agent; candidate lookup itself adds no tokens, and a selected path contributes only its ordinary user-message characters.

Known limitations

  • A selected path is a text reference only. Reading its contents still requires the model to call the read tool, subject to the deployment's filesystem namespace and permissions — a whole-disk path may be visible in completion yet unreadable by the tool.
  • The fallback index is bounded and lazy. Paths beyond globalMaxEntries are omitted, the index rebuilds only when a query arrives after refreshSeconds, and it has no ignore-file semantics — only excludedDirectories basenames are skipped.
  • es.exe option collision. A query starting with - may be parsed by es.exe as an option instead of a search term.
  • Non-ASCII where.exe output. When where.exe cannot report the es.exe path reliably (non-ASCII paths under some console code pages), detection falls back to probing the static install locations.
  • Possible duplicate entries. The same file can appear twice: once as a workspace-relative candidate and once as a whole-disk absolute candidate.
  • Fixed score for Everything-only syntax. Results the plugin's own scorer cannot match (for example wildcard hits) keep a fixed low score instead of a precise ranking.

Development

npm install
npx vitest run
npx tsdown

Do not verify the RPC path with dsh plugin --profile <name> add <local directory>: a directory install uses a pnpm link:, so Node resolves dependencies by realpath from the dev directory's own node_modules and loads a private copy of @deepseek-ai/dsh-file-reference. The host's Typert gateway then cannot discover the fileReferences/list remote method across the mismatched module instances — completion goes silently empty. Verify against the packed artifact instead: npm pack, then dsh plugin --profile web add ./dsh-file-reference-everything-<version>.tgz (or install via github:); peer dependencies then resolve to the host's instances and the path works out of the box.

License

MIT