DeepSeek Harness plugin

dsh-session-enhance

DeepSeek Harness Web 插件:会话栏增强(复制会话ID / 后续导出)。

Jump to install

Source facts

Repository
Triple3h/dsh-session-enhance
Latest update
Aug 19, 2026
Category
Memory
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Triple3h/dsh-session-enhance
Plugin: dsh-session-enhance
Author: Triple3h

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-session-enhance

DeepSeek Harness Web 插件:待填写(功能一句话)。

功能

  • 待填写

安装

npm install        # 装 esbuild(devDependency,仅构建需要)
npm run build      # src/client.js → lib/client.js
npm run link-profile

link-profile 自动完成:dependencies 加 link: 依赖、dsh.profile.bundles 追加、 profile 里 pnpm install。然后手动重启 dsh web(约定:不自动重启)生效。

目录结构

src/client.js        # 浏览器端源码(手写 ModuleLoader 格式,client 插件逻辑所在地)
lib/index.js         # 宿主端空 apply(host 插件逻辑写这里,参考 dsh-image-read)
lib/client.js        # 浏览器端构建产物(npm run build 生成)
package.json         # 三要素:dsh.bundle.patch + dsh.client 声明 + exports["./client"]
cordis.patch.yml     # bundle patch:insert 进 profile 插件树
build.mjs            # 构建脚本(esbuild)
link-profile.mjs     # 链接安装脚本

开发参考

  • 项目级 skill dsh-plugin-dev:SKILL.md + references/(manifest 三要素、client half、

paste/reference 链、pnpm 陷阱)。

  • 参考实现:dsh-text-collapse(client 插件完整模板)、dsh-image-read(host 工具插件)、

~/.dsh/profiles/web/node_modules/dsh-chat-timeline(手写 client bundle)。

  • DSH 内部 API 权威来源:/opt/homebrew/lib/node_modules/@deepseek-ai/dsh/(已安装版本)。