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.

Backup Btn — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
B

dsh-backup-btn

Backup Btn

DSH One-Click Backup Button - Floating button to back up DSH data to GitHub Gist

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

npx -y @deepseek-ai/dsh plugin --profile web add github:faye0526/dsh-backup-btn#aafb180669dde9cde9c3214f30b9e1b8da60720a
READMECompatibilityVersions
screenshot

Compatibility and provenance

Backup Btn is published as dsh-backup-btn and currently resolves to version 1.0.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/26/2026

Versions

1.0.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
1.0.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/26/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-backup-btn

DSH 一键备份按钮 - 浮动按钮一键备份 DSH 数据到 GitHub Gist

screenshot

功能

  • 🔘 右下角浮动备份按钮(Material Design FAB 风格)
  • 💾 一键备份 DSH 数据(localStorage、会话配置等)
  • ☁️ 备份到 GitHub Gist(私有 Gist,安全可控)
  • 🔧 首次使用引导配置(Token + Gist ID)
  • 🚀 零依赖,独立运行,不需要 dshmarket

安装

方式 1:从 GitHub 安装(推荐)

dsh plugin --profile web add github:faye0526/dsh-backup-btn

方式 2:从本地安装

git clone https://github.com/faye0526/dsh-backup-btn.git ~/.dsh/plugins/dsh-backup-btn
dsh plugin --profile web add link:../../plugins/dsh-backup-btn

方式 3:从 npm 安装(发布后可用)

dsh plugin --profile web add @faye0526/dsh-backup-btn

使用

  1. 安装后重启 DSH Desktop 或运行 dsh web
  2. 右下角出现紫色浮动按钮
  3. 首次点击弹出配置向导:
    • GitHub Token:需要 gist 权限,点击创建
    • Gist ID:留空自动创建新 Gist,或填写已有 Gist ID
  4. 配置完成后,点击按钮即可备份
  5. 备份成功后按钮变绿 ✓,Gist ID 显示在 toast 中

数据说明

备份内容包括:

  • DSH localStorage 数据(排除敏感 token/key)
  • 备份时间戳
  • 插件版本号

不备份:

  • GitHub Token(仅用于 API 认证)
  • API Keys
  • 其他敏感配置

常见问题

Q: 为什么不用 dshmarket 的备份功能?

A: dshmarket 是可选依赖,部分用户不装 dshmarket。本插件内置 GitHub Gist API,零外部依赖,任何人装了就能用。

Q: 备份数据存在哪里?

A: 存在你的 GitHub Gist(私有),只有你能看到。Gist ID 和 Token 存在浏览器 localStorage。

Q: 如何更换 Gist?

A: 清除浏览器 localStorage 中的 dsh-backup-config 键,重新配置即可。

Q: 支持自动备份吗?

A: 当前版本仅支持手动备份。自动备份功能计划中(通过 DSH 定时任务实现)。

技术细节

  • Client 插件结构:client.js 经 __ModuleLoader__.load 注册,DSH 自动注入
  • GitHub Gist API:使用 fetch 直接调用 REST API(POST/ PATCH)
  • 配置存储:浏览器 localStorage(未来支持 .credentials.yaml)
  • 无构建步骤:纯原生 JS,无需 webpack/rollup

开发

# 克隆仓库
git clone https://github.com/faye0526/dsh-backup-btn.git
cd dsh-backup-btn

# 链接到 DSH 插件目录
ln -s $(pwd) ~/.dsh/plugins/dsh-backup-btn

# 安装到 profile
dsh plugin --profile web add link:../../plugins/dsh-backup-btn

# 验证
dsh --profile web --dump-config | grep dsh-backup-btn

License

MIT © 2026 faye0526

致谢

  • DSH 团队提供的 __ModuleLoader__.load 机制
  • dshmarket 插件提供的灵感