DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

acryl-dsh-editor-plugin-web

Acryl Dsh Editor Plugin Web

DSH Web 插件:VS Code 风格的代码编辑器视图(文件树、Monaco、ripgrep 搜索/替换、Markdown 预览、Git 差异)。

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

npx -y @deepseek-ai/dsh plugin --profile web add acryl-dsh-editor-plugin-web@0.1.2
README兼容性版本

兼容性与来源证明

Acryl Dsh Editor Plugin Web 以 acryl-dsh-editor-plugin-web 发布,当前版本为 0.1.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/15

版本

0.1.2stable
2026/9/15
0.1.1stable
2026/9/13
0.1.0stable
2026/9/12

相关插件

正在加载相关插件…

最新版
0.1.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
115.2 kB
文件数
6
Surface
web
许可证
MIT
发布源
npm
周下载
0
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

DSH Editor (deprecated — see below)

Deprecated. acryl-dsh-editor-plugin (no suffix) is now universal: dsh.client.platform: "web" covers both ACRYL Web and ACRYL Desktop identically, since Desktop's client is Chromium-rendered exactly like Web's. This -web fork existed only to work around a dsh-client-connection RPC-registration bug that also affected the bare package; that bug is now fixed there too (acryl-dsh-editor-plugin@0.2.7+). Install the bare package instead:

dsh plugin --profile web add acryl-dsh-editor-plugin

This fork is deprecated on npm and receives no further updates.

A VS Code-style code editor that runs inside DeepSeek Harness (DSH) — and therefore inside ACRYL Desktop, which hosts the same DSH plugin runtime. It adds a Files tab to the session main area with a file tree, the Monaco editor, cross-file search/replace, a Markdown preview, and Git status/diff.

The plugin is a standard Cordis plugin (npm package). It installs with one dsh plugin add command and survives restarts.

Features

  • File tree — browse the workspace directory, expand/collapse folders, Git status badges (M/A/??…); click a badge to view the diff.
  • Monaco editor — multi-file tabs, syntax highlighting, configurable word wrap / minimap / font size / tab width, customizable keybindings.
  • Cross-file search — powered by ripgrep: streaming incremental results, match highlighting, virtual scrolling (up to 20,000 results), case/whole-word/regex toggles, include/exclude globs, search history, cross-file replace.
  • Markdown preview — source / preview / split views; rendered with marked + DOMPurify sanitization, highlight.js, mermaid diagrams, KaTeX math, and task-list checkboxes.
  • Quick open — Ctrl+P with fuzzy matching on relative paths.
  • Conversation path jump — Ctrl+click (Cmd+click on macOS) a file path inside an inline-code snippet in the conversation to jump straight to the Files tab and open it.
  • Theme sync — follows the DSH light/dark theme; Monaco, highlight.js, and mermaid switch in real time.

Requirements

  • Node.js >= 20
  • A DSH (or ACRYL Desktop) installation with the dsh CLI available
  • ripgrep on PATH for cross-file search (the editor degrades gracefully without it)
  • git on PATH for status badges and diffs (optional)

Install

From npm (recommended)

dsh plugin --profile web add acryl-dsh-editor-plugin-web

From GitHub

dsh plugin --profile web add git+https://github.com/acryldev/acryl-dsh-editor-plugin-web.git

From a local directory

dsh plugin --profile web add file:/path/to/acryl-dsh-editor-plugin-web

After installing, restart DSH (dsh web --profile web). A Files tab appears in the session main area.

Install into ACRYL Desktop

ACRYL Desktop hosts the same DSH plugin runtime, so the same command works from its built-in terminal — omit the profile flag and the Desktop's active profile is used:

dsh plugin add acryl-dsh-editor-plugin-web

Or install from a local checkout while developing:

dsh plugin add file:/path/to/acryl-dsh-editor-plugin-web

The Desktop routes dsh plugin add through its recoverable install boundary: the active profile is snapshotted, the package is installed, and on success it is reconciled into dsh.profile.bundles. Restart ACRYL Desktop afterwards so the client module table is re-scanned and the Files tab mounts.

How installation works

dsh plugin add appends the package to dsh.profile.bundles. At profile boot, DSH merges this package's bundle patch (cordis.patch.yml) — one insert of the dsh-editor host row — exactly like a manual cordis.patch.yml mount line, and loads the browser half declared under the package's dsh.client field. The client module table scan result is cached in-process, so plugin set changes require a DSH restart to take effect.

Architecture

A DSH browser-UI plugin has two halves, declared via the npm package's dsh field:

  • Host half (lib/index.js) — a standard Cordis plugin in the Node process. Injects fs, subprocess, and connection; serves the editor's private JSON RPC on the /editor connection channel:
    • fs:init, fs:stat-path, fs:project-root, fs:list, fs:read, fs:write, fs:files
    • fs:search-start / fs:search-poll / fs:search-cancel (ripgrep jobs), fs:search-replace
    • git:status, git:diff
  • Client half (lib/client.js) — a browser module loaded by the DSH client runtime. Renders the React UI (file tree, tabs, Monaco, search, preview), talks to the host over the /editor channel, and registers the Files conversation view plus an Editor settings section.

The two halves are wired at boot: package.json declares dsh.bundle.patch → cordis.patch.yml (Host) and dsh.client → ./lib/client.js (Client). No profile file edits are needed.

Dynamic one-off install (try it without installing)

src/host.js and src/client.js are the same editor packaged as dynamic Cordis plugin function bodies. They can be defined inside a single DSH session with the cordis_define tool and activated with cordis_run — no profile change, but they vanish when the process restarts. See install/INSTALL.md.

Directory structure

acryl-dsh-editor-plugin-web/
├── lib/
│   ├── index.js           # Host half (Node: fs/git/ripgrep backends + /editor RPC)
│   └── client.js          # Client half (browser: UI, Monaco, search, preview via /editor RPC)
├── src/
│   ├── host.js            # Dynamic-plugin function body of the host half (reference / quick try)
│   └── client.js          # Dynamic-plugin function body of the client half
├── cordis.patch.yml       # dsh.bundle.patch: inserts the host plugin row into the profile
├── package.json           # dsh.bundle.patch + dsh.client declarations
├── install/INSTALL.md     # Install & migration guide
├── README.md
└── LICENSE

Where it's listed

  • DSH Store (featured example): https://acryl.dev/store/packages/acryl-dsh-editor-plugin-web — featured at the top of the directory and used as the worked example in the publishing guide.
  • npm: https://www.npmjs.com/package/acryl-dsh-editor-plugin-web — tagged dsh-plugin + acryl-package, which is how the store and the DSH Desktop market catalog discover it.
  • Publishing guide: https://acryl.dev/store/publishing — how to publish your own DSH plugin, using this repository as the reference.

License

MIT

相关插件

继续浏览 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 子代理提供程序