dsh-airdrop:把文件拖进 DSH,AI 就能读
dsh-airdrop 是一款 DSH 网页端插件,旨在解决文件上传难题。用户只需在 DSH 窗口拖入文件或文件夹,附件即可随消息发送,AI 自动读取内容。该插件支持任意格式附件,不限制文件类型,并提供浏览器内预览功能。文件仅存储于当前会话隔离的工作区,互不干扰。针对大文件,插件支持分块上传、断点续传及网关错误自动重试,单文件上限达 20 GiB。安装需 Node.js >=22,通过 `dsh plugin` 命令添加 `dsh-universal-attachments` 包并重启服务即可生效。出于安全考虑,推荐通过 SSH 隧道远程访问,避免直接暴露公网。使用时需注意空目录可能不被保留,
Read Moredsh-utility-tools:为 DSH 对话增加文件拖拽与文本引用
dsh-utility-tools 是用于 DSH 对话的输入侧工具插件,由 sharkymew 维护,采用 MIT 许可证。该插件主要解决两个问题:一是支持拖拽任意文件至对话区域,发送前可预览文件名、大小并逐一移除;二是允许选中对话文本后,将其以引用块形式加入待发消息开头。插件提供静态挂载和动态加载两种安装方式:静态版通过一行命令安装至 web profile,利用 HTTP 路由上传附件;动态版使用 `cordis_define` 零依赖加载,进程内运行。适用场景包括在 web 或 Electron 环境中补充文件附件或上下文引用。需注意普通浏览器无法获取真实磁盘路径,单文件上限 8MB,
Read Morepaste-to-workspace:把粘贴或拖入的图片与任意文件保存为会话工作区文件
`paste-to-workspace` 是专为 `dsh web` 设计的插件,旨在解决会话中处理截图和本地文件时操作零散的问题。该插件支持将图片通过 `Cmd/ctrl+V` 粘贴或任意文件拖入聊天框,自动保存至会话工作区 `.dsh-paste/` 目录,并向模型发送文件路径。核心功能包括:任意文件拖放支持、图片粘贴预览、基于文件类型的图标渲染(图片缩略图、其他文件显示 RemixIcon 图标)、点击卡片即可下载原文件、无文字纯文件发送、深浅主题自动适配、30天自动清理过期文件以及拖放提示文案优化。安装需依赖 `dsh plugin` 和 pnpm,通过 GitHub 源执行命令即可安
Read Moredsh-drop-in:在 DSH Web 输入框中拖入或粘贴文件并随消息发送
dsh-drop-in 是专为 DSH Web 界面设计的插件,旨在优化本机文件接入流程。它解决了手动输入路径易错、复制内容丢失位置及图片上传流程冲突等痛点。该插件允许用户通过拖入或粘贴方式将文件(包括图片、文本、文件夹)以原生引用气泡或上方芯片栏的形式展示,发送时自动生成包含绝对路径的引用,使 Agent 能直接读取文件,而非仅处理上传的数据。 核心功能包括:支持任意文件拖放与粘贴,在输入框聚焦时插入光标处,未聚焦时显示在芯片栏;发送后在消息气泡中渲染文件卡片;提供 dropped_files 工具供 Agent 查询未发送文件;兼容 DSH Desktop 的 Electron prelo
Read Moredsh-file-drop: Writing Non-Image File Paths into the DSH Input Field
`dsh-file-drop` is a persistent plugin for DeepSeek Harness (DSH), designed to address the inefficiency of non-image files (such as PDF, Word, Excel, etc.) in DSH, which currently can only be handled through manual path copying. The plugin offers three file input methods: dragging and dropping files anywhere in the window, clicking the paperclip button for multi-selection, and hover bubble hints. It supports directly writing file paths into the input box draft for the agent to read. Its path acquisition strategy attempts in the following priority order: first, directly obtaining the original Finder path through the desktop shell (zero upload, no size limit); second, using the `text/uri-list` path from the drag-and-drop operation; finally, uploading files to the session workspace via the `POST /api/dsh-file-drop` endpoint (with a single-file limit of 25MB). The plug
Read More