DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Session Note — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-session-note

Session Note

A small DeepSeek Harness plugin: a per-session sticky note with Host persistence and a Client overlay.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:makechange/dsh-session-note#d198de5bac5a107df17685d5ab4c4dbbc270723a
READMECompatibilityVersions

Compatibility and provenance

Session Note is published as dsh-session-note and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/22/2026

Versions

0.1.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/22/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.

README

dsh-session-note

给 DeepSeek Harness 用的入门插件:当前会话右下角一块便签,按 sessionId 存在 Host 上,刷新还在。

这不是侧栏。它只走官方 slot shell.overlay,外加一条自己的 HTTP 路由。

它教你什么

  1. package.json 里的 dsh.bundle + dsh.client
  2. cordis.patch.yml 往组合里 insert 一行
  3. Host apply(ctx) 注册 /session-note/api
  4. Client apply(ctx) 往 shell.overlay 塞 UI
  5. 用 dsh plugin --profile web add 装进 profile,而不是会话里动态批准

文件

文件干什么
package.json包名、dsh.bundle、dsh.client、exports["./client"]
cordis.patch.yml安装后插入插件行 id: session-note
src/index.tsHost:读写 $DSH_HOME/storages/session-notes.json
src/client/index.tsxClient:右下角卡片,fetch 调 Host
tsdown.config.tsNode ESM + 浏览器 lazy-CJS(__ModuleLoader__ 握手)

安装

别人不需要 git clone。有 DSH 之后执行:

dsh plugin --profile web add github:makechange/dsh-session-note

pnpm 10 及以上第一次可能会拒绝跑 git 依赖的 prepare。把下面写进 ~/.dsh/profiles/web/pnpm-workspace.yaml,再执行一次同样的 add:

allowBuilds:
  dsh-session-note: true

然后重启 dsh web。打开一个会话,右下角应出现「会话便签」。拖标题栏可以挪开;点 × 会收成「便签」小按钮,再点小按钮展开。位置和收起状态记在浏览器里,刷新还在。保存后看:

  • ~/.dsh/profiles/web/package.json 的 dsh.profile.bundles 多了 dsh-session-note
  • ~/.dsh/storages/session-notes.json 有对应 sessionId

更新:

dsh plugin --profile web update dsh-session-note

卸载:

dsh plugin --profile web remove dsh-session-note

本地改源码(你自己开发)仍然可以链本地目录:

pnpm install
pnpm build
dsh plugin --profile web add /path/to/dsh-session-note

刻意没做的

  • 不 portal、不挤开对话区
  • 不包装 workspaces.openPath
  • 不给模型注册 tool(下一步可以加 note_set / note_get)