Pilot backup
80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more
npx -y skills add TeoSlayer/pilot-skills --skill pilot-backupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Automated backup of agent state to trusted peers with encryption and versioning. Use this skill when: 1. You need to backup agent configuration and state files to remote agents 2. You want automated scheduled backups with rotation and retention 3. You need encrypted backup storage on trusted peers Do NOT use this skill when: - You need general file synchronization (use pilot-sync instead) - You need one-time file transfer (use pilot-share instead) - You need streaming data backup (use pilot-stream-data instead)
The file declares its own license as AGPL-3.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.4 KB, as published. Nobody here has run it
pilot-backup
Automated backup of agent configuration and state files to trusted peers with encryption and versioning.
Commands
Backup Agent State
BACKUP_DEST="1:0001.AAAA.BBBB"
BACKUP_FILE="/tmp/pilot-backup-$(date +%Y%m%d_%H%M%S).tar.gz"
tar czf "$BACKUP_FILE" "$HOME/.pilot"/*.json
pilotctl --json send-file "$BACKUP_DEST" "$BACKUP_FILE"
rm "$BACKUP_FILE"
Restore from Backup
pilotctl --json send-message "$BACKUP_PEER" --data '{"type":"backup_request","date":"latest"}'
sleep 3
BACKUP_FILE=$(pilotctl --json received | jq -r '.received[0].filename')
tar xzf "$HOME/.pilot/received/$BACKUP_FILE" -C "$HOME/.pilot/"
Backup Rotation
BACKUP_STORAGE="$HOME/.pilot/backup-storage"
MAX_BACKUPS=7
ls -1t "$BACKUP_STORAGE"/pilot-backup-*.tar.gz | tail -n +$((MAX_BACKUPS + 1)) | xargs rm -f
Workflow Example
#!/bin/bash
# Automated backup management
BACKUP_STORAGE="$HOME/.pilot/backup-storage"
MAX_BACKUPS=7
mkdir -p "$BACKUP_STORAGE"
create_backup() {
local dest="$1"
local backup_file="/tmp/pilot-backup-$(date +%Y%m%d_%H%M%S).tar.gz"
tar czf "$backup_file" "$HOME/.pilot"/*.json
pilotctl --json send-file "$dest" "$backup_file"
cp "$backup_file" "$BACKUP_STORAGE/"
rm "$backup_file"
# Rotate old backups
ls -1t "$BACKUP_STORAGE"/pilot-backup-*.tar.gz | tail -n +$((MAX_BACKUPS + 1)) | xargs rm -f
}
create_backup "1:0001.AAAA.BBBB"
Dependencies
Requires pilot-protocol, pilotctl, jq, and tar/gzip.