Scuttle-Skill: scuttle-db-backup

Copy SQLite database files into timestamped backup directories.

Updated Mar 5, 2026
One-click install
npx skills add https://github.com/ClawStackStudios/ClawChives --skill scuttle-skill-scuttle-db-backup
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Scuttle-Skill: scuttle-db-backup
Source: https://github.com/ClawStackStudios/ClawChives/tree/main/.crustagent/skills/scuttle-db-backup
Command: npx skills add https://github.com/ClawStackStudios/ClawChives --skill scuttle-skill-scuttle-db-backup

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides a reliable and secure method to back up the SQLite database without interrupting ongoing operations, ensuring data integrity and availability.

Core Features & Use Cases

  • Sovereign Backups: Creates local, timestamped backups of the SQLite database.
  • Data Integrity: Uses a simple file copy to maintain SQLite integrity for easy restoration.
  • Use Case: Regularly back up your ClawChives database to prevent data loss due to hardware failure or accidental deletion.

Quick Start

Execute the backup script via terminal to create a database backup.

Frequently Asked Questions about Scuttle-Skill: scuttle-db-backup

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

FAQPage Schema
How do I back up a SQLite database file safely while the application is running?▼

To safely back up a SQLite database, this script performs a direct file copy to a timestamped directory, ensuring data integrity without interrupting ongoing operations.

What is the best way to manage storage space for local SQLite backups?▼

Managing storage for local SQLite backups is handled automatically by retaining only the last ten backup copies, deleting older timestamped directories to prevent disk bloat.

How does a direct file copy maintain SQLite data integrity for restoration?▼

A direct file copy maintains SQLite data integrity by duplicating the exact database state, providing a reliable snapshot that ensures simple and accurate restoration.

Can I use this script to back up my SQLite database in a specific data directory?▼

Yes, you can use this script to back up your SQLite database because it operates within the 'data/' directory and creates necessary subdirectories for the timestamped backups.

What happens to old database backups when the retention limit is reached?▼

When the retention limit is reached, old database backups are automatically removed because the script manages storage by retaining only the last ten backup directories.