delimit_data_backup
Creates timestamped backups of SQLite and JSON files to a local backup directory, providing restore points before risky data operations like migrations or refactors.
Instructions
Back up SQLite and JSON data files to ~/.delimit/backups/.
When to use: before a risky migration or refactor that touches SQLite or JSON data, to capture a timestamped restore point. When NOT to use: to validate data integrity (use delimit_data_validate) or apply migrations (delimit_data_migrate).
Sibling contrast: delimit_data_validate inspects integrity; delimit_data_migrate runs migrations; this captures a backup.
Side effects: writes timestamped copies of SQLite + JSON files under ~/.delimit/backups/ via backends.tools_data.data_backup.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | Directory or file to back up. Default "." (cwd). | . |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||