DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@opc/dsh-file-attachments

File Attachments

DeepSeek Harness 的会话级通用文件附件

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

npx -y @deepseek-ai/dsh plugin --profile web add github:13323232dong/dsh-file-attachments#dfc82d8e6b9c2a4f489481b53661f989444a23c1
README兼容性版本

兼容性与来源证明

File Attachments 以 @opc/dsh-file-attachments 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/8/30

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/30
查看源码 ↗
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 Universal File Attachments

Session-scoped universal file attachments for DeepSeek Harness (DSH).

It replaces path injection with a compact attachment rail: images, videos, audio, documents, archives, unknown files, and folders are kept as safe, session-scoped attachments. Browser and agent tooling receive attachment IDs, never a local machine path.

Features

  • Drag or paste files directly into a DSH conversation. No extra picker UI.
  • Preview images and videos; show type cards for documents, audio, archives, folders, and other files.
  • Chunked uploads with SHA-256 finalization and a 2 GB per-file / 10 GB batch limit.
  • Session, tenant, user, and agent isolation on every host route.
  • Agent tools for listing, reading, extracting, searching, materializing, and explicitly importing attachments into an asset or knowledge service.
  • Safe folder manifests: relative paths only; .git, node_modules, .DS_Store, device files, and unsafe paths are rejected.

Platform support

The plugin is implemented with Node.js and standard Chromium browser APIs and works on macOS, Windows 10/11, and Linux when DSH runs on a supported Node.js runtime.

CapabilityWindows Chrome / EdgemacOS ChromeFirefox
File drag and pasteSupportedSupportedSupported
Image / video previewsSupportedSupportedSupported
Folder drag with directory treeSupportedSupportedBrowser fallback only
Chunked file uploadSupportedSupportedSupported

Folder traversal uses the File System Access API when available, then the standard Chromium directory entry API, then the browser file list. Use current Chrome or Edge for complete folder-tree support on Windows.

Install

From a local clone:

git clone https://github.com/13323232dong/dsh-file-attachments.git
cd dsh-file-attachments
npm install
npm run build
dsh plugin --profile web add .

Restart the DSH web process after installation. The plugin occupies the conversation.input.attachments slot with a higher-priority universal rail, so remove other plugins that independently consume document-level file-drop events.

Configuration

The core attachment store works without external services. Optional explicit imports to an OPC-compatible asset or knowledge API need server-side settings:

- id: opc-file-attachments
  config:
    apiBaseUrl: https://your-opc-api.example
    identityHmacSecret: !!js process.env.OPC_DSH_IDENTITY_HMAC_SECRET

Never expose identityHmacSecret to the browser. The browser sends only its current DSH session ID; the host resolves the principal and signs outbound requests.

Development

npm install
npm test
npm run typecheck
npm run build

License

MIT