Automates backups and disaster recovery for FairDB databases using tar, rsync, and AWS S3. Generates scripts for retention policies, cron scheduling, and verified restores.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fairdb-operations-kit:fairdb-backup-managerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automate backup and recovery operations for FairDB database instances. Generate backup scripts, configure retention policies, schedule automated backups to local storage or S3, and produce tested restore procedures with integrity verification.
Automate backup and recovery operations for FairDB database instances. Generate backup scripts, configure retention policies, schedule automated backups to local storage or S3, and produce tested restore procedures with integrity verification.
tar and rsync installed for file-level backupss3:PutObject and s3:GetObject permissions (if using S3 as backup target)tar czf), and checksum generationaws s3 cp --sse aws:kms) for off-site copies/var/log/fairdb-backup.log| Error | Cause | Solution |
|---|---|---|
Backup lock acquisition failed | Another backup or maintenance process is running | Check for stale lock files; implement timeout-based lock with flock |
tar: Cannot open: No space left on device | Local backup destination full | Run retention cleanup; check disk usage with df -h; increase volume size |
aws s3 cp: upload failed | Network issue or expired AWS credentials | Retry with --retry 3; refresh credentials; check S3 bucket permissions |
Restore failed: checksum mismatch | Backup file corrupted during transfer or storage | Re-download from S3; verify S3 object integrity; use a different backup copy |
Database inconsistent after restore | Backup taken during active write without lock | Ensure backup script acquires a consistent snapshot lock before export |
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skillsImplements backup strategies for databases, filesystems, and cloud resources using tar, rsync, pg_dump, AWS S3. Automates scheduling, retention, encryption, verification, and disaster recovery.
Generates backup scripts for PostgreSQL, MySQL, MongoDB, and SQLite with scheduling, compression, encryption, retention policies, and restore procedures.
Guides PostgreSQL/MySQL backup and recovery: PITR via WAL archiving, physical/logical backups, RPO/RTO planning, S3/local storage.