
nekogpt/dsh-ui-quote-selection
40Last commit Aug 14, 2026
dsh-ui-quote-selection DSH plugin
This plugin adds a "Quote to input" button when you select text from a message in DSH Web. It places a short preview in the input box and sends the full original text when you submit the message. It supports multiple quotes in a single message and follows DSH's language settings.
How to install the dsh-ui-quote-selection DSH plugin
dsh plugin --profile web add dsh-ui-quote-selectionCopying does not run this command. Review the repository and version before installing the dsh-ui-quote-selection DSH plugin.
dsh-ui-quote-selection DSH plugin data source
dsh-ui-quote-selection DSH plugin snapshot date: Aug 16, 2026
discovered
What the dsh-ui-quote-selection DSH plugin can do
- Select text from user or assistant messages and quote it into the input box with one click
- Show a brief preview of the quoted text in the input box; full text is sent on submission
- Support multiple quotes in one message
- Button text automatically matches DSH Web interface language (Chinese or English)
- Use DSH's built-in quote mechanism without modifying core code
Where the dsh-ui-quote-selection DSH plugin fits
- Quote a specific part of an assistant's response to ask a follow-up question
- Select a user message to reuse or clarify a point
- Combine multiple relevant quotes from different messages into a single prompt
- Avoid copy-paste by directly quoting selected text
Who the dsh-ui-quote-selection DSH plugin is for
- DSH Web users who frequently need to reference specific parts of conversation
- Users who want to reduce manual copying and pasting when asking follow-up questions
dsh-ui-quote-selection DSH plugin limitations
- Only works in DSH Web (not in terminal or other interfaces)
- Tested on DSH 0.1.0-rc.6; may have compatibility issues with future DSH versions
- Plugin is still in early development; issues may occur after DSH upgrades
dsh-ui-quote-selection DSH plugin: from the repository README
Quoted from the nekogpt/dsh-ui-quote-selection README, the upstream source of the dsh-ui-quote-selection DSH plugin. Copyright remains with the original authors.
在 DSH Web 的聊天里选中一段文字,点击「引用到输入框」,就能针对这段话继续提问,不用来回复制粘贴。 输入框只显示一小段引用预览,发送时模型仍会收到完整原文。 ## 安装 适用于 DeepSeek Harness Web。当前已在 `@deepseek-ai/dsh` `0.1.0-rc.6` 上测试。 ```sh dsh plugin --profile web add dsh-ui-quote-selection ``` 安装后重启 `dsh web`,再刷新浏览器。如果没有立即生效,可以按 Ctrl+Shift+R 强制刷新。 ## 使用 1. 在用户或助手的消息中选中一段文字。 2. 点击选区旁边的「引用到输入框」。 3. 继续输入你想问的问题。 4. 发送消息。 输入框中的引用标签只显示原文开头,鼠标移上去可以查看引用内容,按退格键即可删除。你也可以在一条消息里加入多段引用。 ## 它做了什么 - 选中聊天文字后,一键放进输入框。 - 输入框只显示简短预览,不会被长段原文占满。 - 发送时自动带上完整原文,不会丢失内容。 - 按钮文字会跟随 DSH 界面语言显示中文或英文。 插件使用 DSH 自带的引用功能,不会修改 DSH 核心代码。 ## 卸载 ```sh dsh plugin --profile web remove dsh-ui-quote-selection ``` 卸载后重启 `dsh web`。 ## 从源码安装 ```sh git clone https://github.com/nekogpt/dsh-ui-quote-selection.git cd dsh-ui-quote-selection dsh plugin --profile web add . ``` 主要实现位于 `lib/client.js`。DSH 仍处于快速开发阶段;升级 DSH 后,如果引用功能出现异常,请提交 [Issue](https://github.com/nekogpt/dsh-ui-quote-selection/issues)。 ## License [MIT](LICENSE)
Read the full READMERepository license: MIT
dsh-ui-quote-selection DSH plugin questions
How do I use the quote selection plugin?
First install the plugin via `dsh plugin --profile web add dsh-ui-quote-selection` and restart DSH Web. Then in any chat message, select some text and click the "Quote to input" button that appears. The quoted text will be added to your input box as a preview. When you send the message, the full original text is included.
Can I quote multiple selections in one message?
Yes, you can. Simply select text from different messages and click "Quote to input" each time. All quotes will be collected in the input box. You can delete a quote by pressing the backspace key on the preview tag.
Does the plugin work in other DSH interfaces like terminal?
No, this plugin is specifically designed for DSH Web. It only works in the web chat interface. It won't affect terminal or other interfaces.
Will the plugin break after I update DSH?
DSH is still in early development and the plugin has been tested on version 0.1.0-rc.6. After updating DSH, the quote functionality might behave unexpectedly. If you encounter issues, please submit an issue on GitHub.
How do I uninstall the plugin?
Run `dsh plugin --profile web remove dsh-ui-quote-selection` in your terminal. Then restart DSH Web. After restart, the plugin will be completely removed.