backup-manager

Automate creation, verification, and rotation of data backups for air-gapped infrastructure.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/DerSalvador/openclaw-deepseek --skill backup-manager
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: backup-manager
Source: https://github.com/DerSalvador/openclaw-deepseek/tree/main/skills/backup-manager
Command: npx skills add https://github.com/DerSalvador/openclaw-deepseek --skill backup-manager

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the critical process of backing up essential data, ensuring its integrity through verification, and managing storage space by rotating old backups.

Core Features & Use Cases

  • Full Backups: Creates compressed backups of Redis data, configurations, and monitoring data.
  • Integrity Verification: Verifies the completeness and correctness of the latest backup using checksums.
  • Rotation Policy: Enforces a retention policy, keeping a specified number of daily and weekly backups.
  • Use Case: Regularly back up your application's database and configuration files to prevent data loss and ensure you can restore to a previous state if needed.

Quick Start

Run the full-backup.sh script to create a new backup of all critical data.

Frequently Asked Questions about backup-manager

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Redis backups and verify their integrity?

Automate Redis backups by running a script that compresses snapshots and verifies integrity using checksums. This ensures your data is correctly captured and restorable without manual intervention.

Do I need Docker and Python 3 to manage data rotation for air-gapped infrastructure?

Yes, you need Docker, tar, and Python 3 to execute the backup scripts and parse manifests. These dependencies are required to manage rotation and ensure data integrity in air-gapped environments.

What is the best way to enforce a retention policy for daily and weekly backups?

Enforce a retention policy by using a rotation mechanism that automatically keeps a specified number of daily and weekly backups. This manages storage space by automatically deleting outdated archives.

Can I back up configuration files and monitoring data along with database snapshots?

Yes, you can create full compressed backups that include Redis data, configuration files, and monitoring data simultaneously. This captures all critical application state in a single archive.

How does checksum verification work for compressed backup archives?

Checksum verification validates the completeness and correctness of the latest backup. It confirms that the compressed archive is not corrupted and exactly matches the original data state.