Skip to content
OpenSmartRoute
Skillv1.0.0

implementing-backup-strategies

Execute use when you need to work with backup and recovery. This skill provides backup automation and disaster recovery with comprehensive guidance and automation. Trigger with phrases like "create ba

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/devops/backup-strategy-implementor/skills/implementing-backup-strategies/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill implementing-backup-strategies. Copyright stays with the author (MIT).

Implementing Backup Strategies

Overview

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.

Prerequisites

  • tar, rsync, or restic installed for file-level backups
  • Database client tools (pg_dump, mysqldump, mongodump) for database backups
  • AWS CLI configured with S3 write permissions (or equivalent GCP/Azure storage access)
  • Sufficient storage capacity at backup destination (local, NFS, or object storage)
  • Cron or systemd timer access for scheduling automated backups
  • GPG or OpenSSL for backup encryption at rest

Instructions

  1. Inventory all data sources requiring backup: databases, application data directories, configuration files, secrets/certificates
  2. Classify data by RPO (Recovery Point Objective) and RTO (Recovery Time Objective) requirements
  3. Select backup strategy per data class: full daily + incremental hourly for databases, snapshot-based for block storage, rsync for file systems
  4. Generate backup scripts using appropriate tools (pg_dump --format=custom, tar czf, rsync -avz --delete)
  5. Configure retention policy: daily backups kept 7 days, weekly kept 4 weeks, monthly kept 12 months
  6. Add encryption for backups containing sensitive data (gpg --encrypt or S3 server-side encryption with KMS)
  7. Set up automated scheduling via cron jobs or systemd timers with proper logging
  8. Implement backup verification: restore to a test environment on a weekly schedule and validate data integrity
  9. Configure alerting for backup failures via email, Slack, or PagerDuty

Output

  • Backup shell scripts with logging, error handling, and lock files to prevent concurrent runs
  • Cron entries or systemd timer/service unit files
  • Retention policy configuration (lifecycle rules for S3, cleanup scripts for local)
  • Restore runbook with step-by-step recovery procedures
  • Monitoring configuration for backup success/failure alerts

Error Handling

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

Examples

  • "Create a backup strategy for a PostgreSQL database: full dump nightly to S3, WAL archiving for point-in-time recovery, 30-day retention."
  • "Generate rsync scripts to mirror /var/www to a remote NAS with incremental daily backups and weekly full backups."
  • "Implement encrypted backups for a MongoDB replica set with automated restore testing every Sunday."

Resources

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-implementing-cad38b/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-implementing-cad38b.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-implementing-cad38b",
  "kind": "skill",
  "name": "implementing-backup-strategies",
  "description": "Execute use when you need to work with backup and recovery. This skill provides backup automation and disaster recovery with comprehensive guidance and automation. Trigger with phrases like \"create backups\", \"automate backups\", or \"implement disaster recovery\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "devops",
      "backup",
      "disaster-recovery",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Execute use when you need to work with backup and recovery. This skill provides backup automation and disaster recovery with comprehensive guidance and automation. Trigger with phrases like \"create backups\", \"automate backups\", or \"implement disaster recovery\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/devops/backup-strategy-implementor/skills/implementing-backup-strategies/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/devops/backup-strategy-implementor/skills/implementing-backup-strategies/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/devops/backup-strategy-implementor/skills/implementing-backup-strategies/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Grep,",
      "Glob,",
      "Bash(tar:*),",
      "Bash(rsync:*),",
      "Bash(aws:s3:*)"
    ],
    "license": "MIT"
  },
  "instructions": "# Implementing Backup Strategies\n\n## Overview\n\nDesign 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.\n\n## Prerequisites\n\n- `tar`, `rsync`, or `restic` installed for file-level backups\n- Database client tools (`pg_dump`, `mysqldump`, `mongodump`) for database backups\n- AWS CLI configured with S3 write permissions (or equivalent GCP/Azure storage ",
  "cost": {
    "context_tokens": 936
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-implementing-cad38b/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.