How this skill is triggered — by the user, by Claude, or both
Slash command
/backup:backupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quando o usuario pedir backup, restore, ou verificar status de backups.
Quando o usuario pedir backup, restore, ou verificar status de backups.
/root/.backup-config/backup-databases.shmybackup bucket) → /backups/databases//root/.backup-config/.env# Executar backup manual
/root/.backup-config/backup-databases.sh
# Ver logs
tail -f /var/log/db-backup.log
# Listar backups no R2
aws s3 ls s3://mybackup/backups/databases/ \
--endpoint-url https://ACCOUNT_ID.r2.cloudflarestorage.com
# Restaurar
aws s3 cp s3://mybackup/backups/databases/myapp_db_2026-02-02.sql.gz . \
--endpoint-url https://ACCOUNT_ID.r2.cloudflarestorage.com
gunzip myapp_db_2026-02-02.sql.gz
mysql -u deploy -p myapp_db < myapp_db_2026-02-02.sql
npx claudepluginhub billyfranklim1/claude-skills --plugin backupGenerates backup scripts for PostgreSQL, MySQL, MongoDB, and SQLite with scheduling, compression, encryption, retention policies, and restore procedures.
Automates backups and disaster recovery for FairDB databases using tar, rsync, and AWS S3. Generates scripts for retention policies, cron scheduling, and verified restores.
Implements backup strategies for databases, filesystems, and cloud resources using tar, rsync, pg_dump, AWS S3. Automates scheduling, retention, encryption, verification, and disaster recovery.