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.

Capture Window — DSH Plugin for DeepSeek Harness
← Plugins

dsh-capture-window

Capture Window

Side-channel capture window + /recall engine: send ideas into a quiet, independent new session, compressing the current session’s latest 10 messages as background (does not enter the main context or switch the main view)

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Yidien/dsh-capture-window#d18ea29a1c6beab4347a31f4a77af1f2286ade3f
READMECompatibilityVersions

Compatibility and provenance

Capture Window is published as dsh-capture-window and currently resolves to version 1.1.4. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/20/2026

Versions

1.1.4stable
9/16/2026
1.1.3stable
9/4/2026
1.0.6stable
8/29/2026
Show 6 more versionsCollapse versions
1.0.5stable
8/29/2026
1.0.4stable
8/20/2026
1.0.3stable
8/17/2026
1.0.2stable
8/17/2026
1.0.1stable
8/16/2026
1.0.0stable
8/16/2026

Related plugins

Loading related plugins…

Latest
1.1.4
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
232
Last push
9/16/2026
View source ↗Project homepage ↗
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Mnemondsh-mnemonComposable three-tier memory control plane for DeepSeek Harness: persistent runtime context, searchable project documents, pluggable long-term memory, guarded strategies, WebUI, and headless tools.

README

dsh-capture-window(旁路捕获窗 + /recall 引擎)

把一条「发散想法」投进一个安静的独立新会话,不触碰主线上下文、不切主线视图。

  • 捕获窗:Ctrl+Shift+K 或右下角「⚡ 捕获」浮标呼出,可拖拽,深色模式适配。
  • 三种上下文模式:白纸 / 选择 / 近 10 条对话(默认近 10 条)。
  • 近 10 条:自动压缩当前会话最近 10 句,注入新会话作为「非回复背景」。
  • 对话视图:新会话内直接继续聊(Enter 排队 / Ctrl+Enter 插队 / Shift+Enter 换行),内嵌模型选择。
  • 便利贴:临时暂存想法(内存态,关闭窗口即清空)。
  • 会话落地:新会话继承当前目录/工作区,不会跑到「未分组」。

结构

dsh-capture/
├── src/host/index.ts     host 引擎:/recall 命令(近10条压缩 → 新建会话 → inject+followup)
├── src/client/index.ts   捕获窗 + 对话视图(官方 connection.api 数据层)
├── tsconfig.json         host 编译(tsc → lib/index.js)
├── tsdown.config.mjs     client 打包(→ dist/client.cjs)
└── install.ps1           构建/安装/接线/重启提示

架构

  • host 半边:包的默认导出(main: lib/index.js),由 cordis 插件 loader 加载。注册 /recall 命令,负责压缩、建会话、注入上下文(这些需要 host 侧的 llm.stream 与 agent.inject)。
  • client 半边:dsh.client 声明 + exports["./client"](dist/client.cjs),走官方 ctx.connection.api(sessions.history/prompt/models/selectModel、llm.*、events.host/mux)与 connection.rpc(选择模式由 host 侧过滤消息,避免下发 chunk 碎片),无私有 harness RPC。
  • 纯外挂:不改官方源码,只用官方公开的 Service / 事件 / Slot / API。

安装

方式一:一键安装(推荐)

dsh plugin --profile web add dsh-capture-window

(dsh 即 npx @deepseek-ai/dsh。)装完重启 npx @deepseek-ai/dsh web,按 Ctrl+Shift+K 呼出捕获窗。

原理:本包声明了 dsh.bundle.patch,dsh plugin add 会自动把它注册进 dsh.profile.bundles,无需手动改 cordis.patch.yml。

方式二:源码安装

cd dsh-capture
.\install.ps1

脚本会:装依赖 → tsc 构建 host → tsdown 构建 client → pnpm add 装进 ~/.dsh/profiles/web → 在 cordis.patch.yml 追加插件行 → 提示重启。

信任边界

  • 召回上下文只做「忠实压缩」,不接受改写;注入内容标记 plugin/recall 来源(非回复 prelude)。
  • 会话本体由 DSH 持久化:关闭窗口 / 刷新 / 重启不会删除或归档已创建的会话;只有「便利贴」和本次运行期间的「最近列表」是内存态。