DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Local Path Attachments — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
L

dsh-local-path-attachments

Local Path Attachments

将本地文件拖入 DeepSeek Harness Desktop,作为绝对路径附件卡片,而不将其复制到工作区

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

npx -y @deepseek-ai/dsh plugin --profile web add github:WangZetian-IVERSON/dsh-local-path-attachments#68c4df454b745a0e8e26147b41e972b637ce9ce3
README兼容性版本

兼容性与来源证明

Local Path Attachments 以 dsh-local-path-attachments 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.1stable
2026/9/1

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件

README

DSH Local Path Attachments

Local Path Attachments for DSH

Turn files dropped from Explorer or Finder into removable attachment cards backed by their real absolute paths — without uploading or copying file bytes.

Get Started · 中文文档 · Releases · Report a Bug


Drop one file or fifty. Each becomes a compact card above the DSH composer, with its filename, complete path, and a remove action. When the message is submitted, the Agent receives the path verbatim:

C:\Users\you\Desktop\research report.pdf

The source file stays exactly where it was. The plugin does not read it, upload it, or create a workspace copy.

Why this plugin?

📎 Native-feeling cards

Files appear as removable cards in the existing composer dock instead of noisy pasted text.
📍 Real absolute paths

Electron resolves the genuine disk path, including spaces, Chinese filenames, UNC paths, and files outside the workspace.
🛡️ Zero-copy by design

Only a path reference enters the draft. File bytes remain in their original directory and under DSH sandbox policy.

Features

Drag, display, and manage

  • Drop one or multiple files anywhere in the DSH Desktop window.
  • Show filename, full absolute path, and a one-click remove action.
  • Deduplicate Windows paths case-insensitively.
  • Support spaces, Chinese filenames, drive-letter paths, UNC paths, and POSIX paths.
  • Limit each draft to 50 local-path cards.

Reliable composer lifecycle

  • Store every card as a native Composer reference node.
  • Follow normal submit, failed-submit restoration, draft clearing, and session isolation behavior.
  • Rehydrate persisted draft markers after the Client UI reloads.
  • Serialize only the verbatim absolute path — no explanatory prefix or escaped wrapper.

Safe coexistence

  • Register additively in conversation.input.dock; the shipped image attachment slot is not replaced.
  • Capture disk-file drops only when the DSH Desktop preload bridge is available.
  • Leave ordinary browser file-drop behavior untouched when absolute paths cannot be resolved safely.

Quick Start

1. Download

Download the ready-to-install dsh-local-path-attachments-0.1.1.tgz from the latest release.

2. Install into the Desktop Profile

cd "$env:USERPROFILE\.dsh\profiles\desktop"
pnpm add "D:\path\to\dsh-local-path-attachments-0.1.1.tgz"

3. Enable the bundle

Append dsh-local-path-attachments to the existing dsh.profile.bundles array in the Desktop Profile's package.json:

{
  "dsh": {
    "profile": {
      "bundles": [
        "dsh-local-path-attachments"
      ]
    }
  }
}

Preserve every bundle already present; only append this entry. Restart DSH Desktop once after installation.

4. Use it

  1. Open a DSH conversation.
  2. Drag files from Explorer or Finder into the Desktop window.
  3. Review or remove the resulting cards.
  4. Submit the message and ask the Agent to inspect the referenced files.

How it works

flowchart LR
    A[Explorer / Finder] -->|drop File objects| B[Electron preload bridge]
    B -->|webUtils.getPathForFile| C[Absolute paths]
    C --> D[Composer reference nodes]
    D --> E[Attachment cards]
    D -->|submit verbatim path| F[Agent]
    A -. file bytes stay in place .-> A

The hidden reference node owns draft and submission semantics. The visible dock card is a projection of that reference. Clipboard-safe markers allow cards to survive a Client reload without copying file contents.

Compatibility

EnvironmentStatusBehavior
Windows DSH Desktop✅ VerifiedAbsolute paths, multi-file drop, card removal, persistence, and submission tested end to end.
macOS / Linux DSH Desktop🧪 Path-awarePOSIX paths are supported by the codec; these platforms have not yet been field-tested by the maintainer.
Browser-only Web GUI➖ Intentional fallbackBrowser File objects do not expose absolute paths; the plugin does not intercept the existing drop behavior.

Privacy and security

  • Absolute paths become part of the submitted user message and may contain usernames or sensitive directory names.
  • File bytes never pass through this plugin.
  • Reading files outside the workspace remains subject to the active DSH sandbox and approval policy.
  • A path card cannot bypass operating-system permissions or DSH security boundaries.
  • Moving or deleting the source file does not update an existing card.

Development

git clone https://github.com/WangZetian-IVERSON/dsh-local-path-attachments.git
cd dsh-local-path-attachments
pnpm install
pnpm check
pnpm pack

pnpm check builds the Host and Client bundles, typechecks all targets, runs 11 unit and jsdom integration tests, and verifies the DSH lazy-module wrapper and external dependencies.

LayerTechnology
Plugin compositionCordis / dsh.bundle.patch
Client UIReact 18 + DSH Slots
Composer integrationDSH input-trigger references
Desktop path bridgeElectron webUtils.getPathForFile
Language and buildTypeScript 6 + tsdown
TestsVitest + jsdom

Release integrity

v0.1.1 tarball SHA-256:

e41e542365470558a0d4fe30434727a007c70dd7cb2c967112bac44b9720c372

See the full history in CHANGELOG.md.

Contributing

Bug reports, focused feature requests, documentation improvements, and pull requests are welcome. Please include the DSH Desktop version, operating system, reproduction steps, and any relevant Client diagnostics.

If this plugin is useful, consider starring the repository so other DSH users can discover it.

License

MIT © WangZetian-IVERSON