Jasper ConfigGuard

ReviewAudited by ClawScan on May 10, 2026.

Overview

Jasper ConfigGuard appears to do the advertised local OpenClaw config backup, patch, restart, and rollback workflow, but it gives agents meaningful power over your gateway configuration.

Install only if you intend to let this tool edit and restart your OpenClaw gateway. Verify the npm package first, run dry-run for proposed patches, review model/plugin/config changes before applying them, and protect the backup directory if your config contains secrets.

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 invoked with the wrong patch, it could change how your OpenClaw gateway and agents behave, even though backups and rollback are provided.

Why it was flagged

The skill is intended to let an agent modify OpenClaw configuration, including model and plugin settings. This is purpose-aligned but high-impact.

Skill content
Use from your agent to safely modify OpenClaw config:
Recommendation

Use --dry-run first, review patches before applying them, and avoid letting the agent apply config changes without explicit user approval.

What this means

Running patch or restore may signal every process that matches the openclaw-gateway pattern.

Why it was flagged

The code runs a shell command to signal the gateway during restart. The command is static and fits the advertised purpose, but it relies on Unix process matching.

Skill content
execSync('kill -USR1 $(pgrep -f openclaw-gateway)', { stdio: 'pipe', timeout: 5000 });
Recommendation

Use it only on systems where that process name is unambiguous, and prefer running with normal user privileges rather than elevated privileges.

What this means

Secrets or private settings in openclaw.json may be duplicated in local backup files or shown in diffs.

Why it was flagged

The tool stores persistent copies of the full OpenClaw config as backups. Config files can contain sensitive auth or provider settings.

Skill content
Stored in `~/.openclaw/config-backups/` ... Last 20 kept (auto-pruned)
Recommendation

Protect the backup directory, avoid sharing diff output, and check whether your OpenClaw config contains secrets before using backup/diff workflows.

What this means

Users may install code from a package source that is not fully represented by the registry metadata.

Why it was flagged

The registry metadata does not provide provenance or an install contract, while the skill documentation asks users to install a global npm package.

Skill content
Source: unknown; Homepage: none; Install specifications: No install spec — this is an instruction-only skill.
Recommendation

Verify the npm package, repository, and version before global installation, and pin the version where possible.