DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Backupper — DeepSeek Harness 插件(DSH Plugin)
← Plugins
B

dsh-backupper

Backupper

使用 Restic 在 Windows PC 上为远程 Linux 服务器设置免费、加密且去重的备份——通过 tar-over-SSH 流式传输,服务器端无需安装任何软件,并进行大小验证,针对

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

npx -y @deepseek-ai/dsh plugin --profile web add github:axelfreeman/backupper#5c41100f88ead6297cc66a7203178bfe3e123ca1
README兼容性版本

兼容性与来源证明

Backupper 以 dsh-backupper 发布,当前版本为 0.3.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.3.0stable
2026/9/11

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

Backupper

Free, encrypted, deduplicated backups of remote Linux servers — pulled from a Windows PC with Restic, with zero software installed on the servers and a built-in size VERIFY that catches silently truncated snapshots.

How it works

Restic runs on your Windows PC and streams a tar of each server over SSH straight into an encrypted local repo. The servers only need tar + sshd (always present).

ssh root@SERVER "tar -C / -cf - ... /" | restic -r C:\backups\REPO backup --stdin

Features

  • AES-256 client-side encryption — the key never leaves your PC.
  • Deduplication — daily snapshots are nearly free after the first; interrupted runs re-run cheaply (catch-up = dedup, not re-upload).
  • No server-side agents — nothing to install or babysit on the servers.
  • Verified by design — per-repo size thresholds flag 0-byte and truncated snapshots that Restic silently saves as "OK" when the stream dies mid-run.
  • Provable from the server side — no PC access? Confirm a pull really finished via sshd session-duration / overlap checks, and probe the true tar size on the server.
  • Free forever — Restic is BSD-2-Clause.

Quick start

npx skills add axelfreeman/backupper

Or drop this folder into any AI agent (Claude Code, Hermes, Cursor, etc.) and ask it to "set up backups of my servers". The agent reads SKILL.md and does the rest — install, key setup, repo init, the .bat wrapper, scheduling, and the size VERIFY.

Layout

PathWhat
SKILL.mdThe agent skill (works with any LLM)
SKILL.lite.mdCompact version for low-context models
llms.txtAgent-discoverable index (when-to-use + key phrases)
scripts/backup-server.batSingle-server backup wrapper (template)
scripts/backup-all.batFleet wrapper: N servers, one scheduled task, [OK]/[FAIL] log, VERIFY
scripts/verify-backups.ps1Per-repo size check vs thresholds
scripts/backup_watchdog.shServer-side hourly freshness status (runs on any Linux box)
scripts/measure-tar-size.shTrue-size tar probe on a server (truncation check)
references/windows-setup.mdInstall, SSH keys, Task Scheduler, catch-up, golden rules
references/verification-and-failure-modes.mdSilent failure modes + how to catch them (PC + server side)
references/database-dumps.mdPostgres/MySQL dump patterns
examples/backup-demo.mdA full setup transcript

Keywords

server backup · self-hosted backup · back up VPS · back up Linux server · automatic backup · scheduled backup · encrypted backup · deduplicated backup · free backup · no-cloud backup · restic backup · database backup · postgres backup · mysql backup · backup verification

Roadmap

  • Core pull-backup skill (v0.1)
  • Size VERIFY against truncated/0-byte snapshots (v0.2)
  • Fleet .bat + per-server status + log (v0.2)
  • Server-side freshness watchdog (v0.2)
  • Server-side "did it finish" checks + true-size tar probe (v0.3)
  • Multi-server dashboard
  • Self-hosted control plane

Stay updated

Axel Freeman ships releases and improvements to this repo regularly. Watch + star the repo to get each new release automatically. See CHANGELOG.md.

License

Tool = Restic (BSD-2-Clause). This repo's own files = MIT.