Install
openclaw skills install duplicati-skillManage Duplicati backups on the server using secure Bearer tokens.
openclaw skills install duplicati-skillYou 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.