Simple Backup
Analysis
This looks like a coherent backup tool, but it handles broad OpenClaw state and credential data and can sync encrypted backups to cloud, so it deserves careful review before installation.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"dependencies": {
"rclone": "*",
"gpg": "*"
}The package declares wildcard npm dependencies for tools that are otherwise documented as system binaries, creating provenance ambiguity if installed through a package manager.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
KEY_FILE="$STATE_DIR/credentials/backup.key" ... rsync -a --exclude 'logs' --exclude 'media' --exclude 'browser' "$STATE_DIR/" "$STAGING_DIR/state/"
The script reads a backup password from the OpenClaw credentials area and copies the whole state directory except a few exclusions, so credential/configuration material may be included in the backup archive.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
if [ -n "$REMOTE_DEST" ]; then
...
rclone sync "$BACKUP_ROOT" "$REMOTE_DEST" --include "*.gpg" --progressWhen a remote destination is configured, the encrypted backup archive is sent to an external rclone remote.
