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.

Quote Selection — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
Q

dsh-quote-selection

Quote Selection

DSH Web UI plugin: select conversation text and quote it into the composer as a Markdown blockquote

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lianginx/dsh-quote-selection#7039316fff030ee0361956093ed0745fd7bc48b7
READMECompatibilityVersions

Compatibility and provenance

Quote Selection is published as dsh-quote-selection and currently resolves to version 0.2.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.2.0stable
8/22/2026
0.1.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.2.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 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the 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