backup

Manage file, database, and system backups with rsync, tar, and database dump tools.

3|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/jholhewres/goclaw-skills --skill backup-jholhewres
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: backup
Source: https://github.com/jholhewres/goclaw-skills/tree/main/skills/backup
Command: npx skills add https://github.com/jholhewres/goclaw-skills --skill backup-jholhewres

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides comprehensive solutions for backing up and restoring files, databases, and entire systems, ensuring data safety and recovery capabilities.

Core Features & Use Cases

  • File Backups: Incremental and archive-based file synchronization using rsync and tar.
  • Database Backups: Dedicated commands for PostgreSQL, MySQL, and MongoDB.
  • Automated Backups: Guidance on setting up cron jobs and shell scripts for regular backups.
  • Cloud Integration: Options for backing up to AWS S3 and using rclone for multi-cloud storage.
  • Use Case: Regularly back up your critical project files and database to a remote server or cloud storage to prevent data loss.

Quick Start

Use the backup skill to perform an incremental rsync of the '/source/data' directory to '/backup/data'.

Frequently Asked Questions about backup

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

FAQPage Schema
How do I create an incremental file backup using rsync?

Incremental file backup using rsync synchronizes only the changed data from a source directory to a backup destination, reducing transfer time. This Skill provides command-line scripts to automate rsync synchronization for efficient data recovery.

Can I back up PostgreSQL and MySQL databases from the command line?

Yes, database backup for PostgreSQL, MySQL, and MongoDB is supported using dedicated command-line tools like pg_dump, mysqldump, and mongodump. The Skill manages these database dumps to ensure complete data recovery capabilities.

What's the best way to automate scheduled database backups and file synchronization?

Automating scheduled database backups and file synchronization is best achieved using cron jobs and custom shell scripts. This Skill provides guidance on configuring cron to run regular backup processes without manual intervention.

Does this backup solution support cloud storage integration with AWS S3?

Cloud backup integration with AWS S3 is fully supported, alongside multi-cloud storage options using rclone. You can configure remote synchronization to send compressed archives directly to your cloud storage environment.

How do I restore data from a compressed tar archive?

Restoring data from a compressed tar archive involves extracting the backup files back to their original directory structure. This Skill manages the restoration process using command-line tools like tar to ensure accurate data recovery.