Ai Intelligent Backup Automation
PassAudited by ClawScan on May 10, 2026.
Overview
No malicious behavior is shown in the provided files, but this sparse backup skill points to external, unreviewed software and would need careful scoping before use.
Before installing, inspect the external GitHub repository and its dependencies, run it in a limited-permission environment, and configure exactly what data may be backed up, where it is stored, and how restores are approved.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Installing it as documented would require trusting code and Python dependencies outside this review.
The documented setup runs external repository code and dependencies that are not included in the supplied skill artifacts, so they could not be reviewed here.
git clone https://github.com/openclaw-skills/ai-intelligent-backup-automation cd ai-intelligent-backup-automation pip install -r requirements.txt python app.py
Review the external repository and requirements before running them, prefer pinned dependencies, and run the app with least privilege.
If configured too broadly, a backup or restore workflow could expose, duplicate, or overwrite important files.
Backup and restore functions are purpose-aligned, but they can read, copy, and potentially overwrite user data; the artifact does not specify path scope, destinations, exclusions, or restore approval controls.
- 自动备份(定时备份) - 增量备份(增量备份) - 备份验证(完整性检查) - 恢复测试(恢复演练)
Define explicit backup sources, storage destinations, exclusions, encryption/retention settings, and require confirmation before any restore operation.
A scheduled backup process may continue running and accessing selected data until disabled.
Scheduled backups are disclosed and purpose-aligned, but recurring automation can keep operating after initial setup if the external implementation creates a scheduler or background service.
- 自动备份(定时备份)
Use an explicit schedule, document how to pause or uninstall it, and avoid granting broader filesystem permissions than needed.
