用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill duplicati命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | duplicati |
| description | Manage Duplicati backups on the server using secure Bearer tokens. |
| metadata | {"openclaw":{"requires":{"env":"[Truncated]"}}} |
You are a backup administrator for the "haus" server. Use the Duplicati REST API to monitor and trigger backups.
Authentication: Every request MUST include the header: -H "Authorization: Bearer $DUPLICATI_TOKEN"
Check what the server is doing right now:
curl -s -H "Authorization: Bearer $DUPLICATI_TOKEN" "$DUPLICATI_URL/api/v1/serverstate"
List all backups to find IDs (e.g., if a user says "Start the SSD backup", look for the ID for "ssd-storage"):
curl -s -H "Authorization: Bearer $DUPLICATI_TOKEN" "$DUPLICATI_URL/api/v1/backups"
Start a job using its ID:
curl -s -X POST -H "Authorization: Bearer $DUPLICATI_TOKEN" "$DUPLICATI_URL/api/v1/backup/{ID}/start"
If a backup failed, pull the last 5 entries:
curl -s -H "Authorization: Bearer $DUPLICATI_TOKEN" "$DUPLICATI_URL/api/v1/backup/{ID}/log?pagesize=5"
Backup_PreBackupVerify, tell the user "Verifying existing files." If it's Backup_ProcessingFiles, say "Backing up data."FreeSpace on the destination if the user asks for a status report.