From backup-strategy-implementor
Implements backup strategies for databases, filesystems, and cloud resources using tar, rsync, pg_dump, AWS S3. Automates scheduling, retention, encryption, verification, and disaster recovery.
How this skill is triggered — by the user, by Claude, or both
Slash command
/backup-strategy-implementor:implementing-backup-strategiesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Design and implement backup strategies for databases, file systems, and cloud resources using tools like `tar`, `rsync`, `pg_dump`, `mysqldump`, AWS S3, and cloud-native snapshot APIs. Covers full, incremental, and differential backup schemes with retention policies, encryption, and automated verification.
Design and implement backup strategies for databases, file systems, and cloud resources using tools like tar, rsync, pg_dump, mysqldump, AWS S3, and cloud-native snapshot APIs. Covers full, incremental, and differential backup schemes with retention policies, encryption, and automated verification.
tar, rsync, or restic installed for file-level backupspg_dump, mysqldump, mongodump) for database backupspg_dump --format=custom, tar czf, rsync -avz --delete)gpg --encrypt or S3 server-side encryption with KMS)| Error | Cause | Solution |
|---|---|---|
No space left on device | Backup destination full | Verify retention cleanup is running; increase storage or reduce retention window |
pg_dump: connection refused | Database not accepting connections or wrong credentials | Check pg_hba.conf, verify connection string, and test with psql first |
rsync: connection unexpectedly closed | Network interruption or SSH timeout | Add --timeout=300 and --partial flags; use persistent SSH tunnel |
S3 upload failed: Access Denied | IAM policy missing s3:PutObject permission | Attach proper IAM policy; verify bucket policy allows writes from the backup source |
Backup file corrupted on restore | Incomplete write or disk error during backup | Add checksum verification (sha256sum) after backup; test restores regularly |
/var/www to a remote NAS with incremental daily backups and weekly full backups."11plugins reuse this skill
First indexed Jul 10, 2026
Showing the 6 earliest of 11 plugins
npx claudepluginhub luxdevnet/claude-plus-lux --plugin backup-strategy-implementorImplements backup strategies for databases, filesystems, and cloud resources using tar, rsync, pg_dump, AWS S3. Automates scheduling, retention, encryption, verification, and disaster recovery.
Implements backup and restore strategies for disaster recovery including backup types, retention policies, restore testing, and RTO/RPO. Use when setting up automated backups or planning recovery procedures.
Generates production-ready backup scripts for PostgreSQL, MySQL, MongoDB, and SQLite with scheduling, compression, encryption, and retention policies.