Config Rollback

ReviewAudited by ClawScan on May 1, 2026.

Overview

The skill matches its stated rollback purpose, but it installs a scheduled background task that can automatically change OpenClaw configuration and restart the gateway.

This appears to be a legitimate OpenClaw config rollback helper. Before installing, be comfortable with a cron job that runs every minute, can overwrite ~/.openclaw/openclaw.json from a backup, and can restart the OpenClaw gateway. Review the cron entry and avoid putting secrets in the persistent verification notes.

Findings (4)

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.

What this means

If the timeout condition is met, the skill may revert your OpenClaw configuration and restart the gateway without asking again.

Why it was flagged

The guardian can overwrite the active OpenClaw configuration from a backup and restart the gateway automatically. This is central to the rollback purpose, but it is a high-impact local action.

Skill content
cp $backup_file $CONFIG
    openclaw gateway restart >> $LOG 2>&1
Recommendation

Use the prepare script only before intentional config changes, understand the 5-minute rollback window, and confirm the selected backup is the one you want.

What this means

A scheduled task will remain active after installation and can act whenever the rollback state file exists.

Why it was flagged

The installer adds a persistent cron task that runs the rollback guardian every minute. The behavior is disclosed and purpose-aligned, but it is continuing background automation.

Skill content
(crontab -l 2>/dev/null | grep -v "rollback-guardian"; echo "*/1 * * * * $OPENCLAW_DIR/scripts/rollback-guardian.sh") | crontab -
Recommendation

Check your crontab after installation and remove the rollback-guardian entry if you no longer want automatic rollback protection.

What this means

Installation does more than an instruction-only skill might imply: it copies executable scripts and configures scheduled execution.

Why it was flagged

The package includes a local installer that copies and enables scripts even though the registry says there is no install spec. The script is visible in the artifacts, but the install behavior is not fully represented by the registry metadata.

Skill content
cp $SCRIPT_DIR/*.sh $OPENCLAW_DIR/scripts/
chmod +x $OPENCLAW_DIR/scripts/prepare-config-change.sh
Recommendation

Review the install script before running it, and the publisher should declare the installer behavior and cron dependency in metadata.

What this means

Text entered during setup can persist in OpenClaw documentation and may influence later agent behavior if that file is used as context.

Why it was flagged

The prepare script appends the user-provided change description and verification items into a persistent Markdown document that may later be read as task context.

Skill content
VERIFICATION_FILE=~/.openclaw/workspace/docs/PENDING_VERIFICATION.md
cat >> $VERIFICATION_FILE << EOF
Recommendation

Do not put secrets or untrusted instructions in verification items, and periodically review PENDING_VERIFICATION.md.