DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Quote Selection — DeepSeek Harness 插件(DSH Plugin)
← Plugins
Q

dsh-quote-selection

Quote Selection

DSH Web UI 插件:选择对话文本,并将其作为 Markdown 引用块插入编辑器

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lianginx/dsh-quote-selection#7039316fff030ee0361956093ed0745fd7bc48b7
README兼容性版本

兼容性与来源证明

Quote Selection 以 dsh-quote-selection 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.0stable
2026/8/22
0.1.0stable
2026/8/22

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。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 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器

README

dsh-quote-selection: select chat text, click ❝ Quote, it lands in the composer as a Markdown blockquote

dsh-quote-selection

❝ Quote selected chat text into the composer · A DeepSeek Harness Web UI plugin

Install

dsh plugin --profile web add github:lianginx/dsh-quote-selection

Features · Install · Usage · How it works

English · 简体中文


Inspired by ChatGPT's "Ask ChatGPT" selection popover: select any text in a conversation reply — one line or many — and a floating ❝ 引用 (Quote) button appears above the selection's first line. Click it and the selection lands in the composer as a Markdown blockquote, with the caret ready on the line right below. Type your follow-up question immediately.

Features

  • Floating quote button — appears on selection over conversation text; hides on scroll, resize, or clicking elsewhere
  • Clean Markdown output — one > per line; multi-line selections carry proper > continuation lines and render as a standard blockquote after sending
  • Chained quotes — quoting again appends a new block separated by exactly one blank line, handy for asking about several passages at once
  • Writes through the front door — inserts via inputActions.setDraft, the input machine's single public write path, so undo history, reference chips, and draft stats all keep working
  • Follows the app language — the button label renders through DSH's locale service: 「引用」 on a Chinese UI, "Quote" on an English one
  • Zero dependencies, zero build — plain JavaScript shipped as-is; installing from GitHub runs no code and needs no pnpm allowBuilds permission

Install

# From GitHub (pinning to a tag or commit is recommended)
dsh plugin --profile web add github:lianginx/dsh-quote-selection
# Or locked:
dsh plugin --profile web add github:lianginx/dsh-quote-selection#v0.1.0

dsh --profile web   # or: dsh web

Local development install (with this checkout kept next to deepseek-harness):

dsh plugin --profile web add ../dsh-quote-selection

add links the checkout (link: semantics), so editing client.js takes effect after restarting dsh web — no reinstall needed.

Requires node ^22.19 || >=24 and a profile containing the official @deepseek-ai/dsh-web-app layer (the shipped web template has it).

Usage

  1. Select some text in any assistant reply;

  2. Click the floating ❝ 引用 button;

  3. The composer now holds:

    > The quoted first line
    >
    > The second line
    

    with the caret on the line below — start typing your question;

  4. Select other text and quote again: the new block joins with exactly one blank line between quotes.

Uninstall / upgrade

dsh plugin --profile web remove dsh-quote-selection
dsh plugin --profile web update dsh-quote-selection

How it works

PieceSlot / mechanism
Floating buttonshell.overlay (additive list slot, click-through by default); selection validated against the product anchors [data-conversation-scroll] / [data-composer-seat]
Draft writeAn invisible bridge component on conversation.composer.dock holding inputActions.setDraft — the input machine's only public write path
StylingA data-plugin-tagged stylesheet injected inside the factory closure, built on theme tokens (--dsw-alias-*) so light and dark both adapt
TimersThe Cordis timer service (inject: ['timer']); no native timer globals
CopyA plugin-private locale namespace registered through the Cordis locale service (zh/en, English fallback)

The browser half depends only on baseline module-table entries (react) and Cordis services (slots, timer) — no other @deepseek-ai/* value imports. The package follows the DSH publishing conventions (publish tutorial): manifest dual declaration dsh.bundle.patch + dsh.client { platform: 'web' }, and a patch that only inserts rows.

License

MIT