Jasper ConfigGuard
/install jasper-configguard
Jasper ConfigGuard v1.0.0
Safe config changes for OpenClaw with automatic rollback. Never brick your gateway again.
Setup
npm install -g jasper-configguard
Usage
Apply a config change safely
jasper-configguard patch '{"gateway":{"bind":"tailnet"}}'
The tool will:
- Back up your current config
- Apply the patch (deep merge)
- Restart the gateway
- Wait for health check
- Auto-rollback if gateway fails
Preview changes
jasper-configguard patch --dry-run '{"agents":{"defaults":{"model":{"primary":"opus"}}}}'
Restore from backup
jasper-configguard restore
List backups
jasper-configguard list
Check health
jasper-configguard doctor
Agent Integration
Use from your agent to safely modify OpenClaw config:
# Safe model switch
jasper-configguard patch '{"agents":{"defaults":{"model":{"primary":"anthropic/claude-opus-4-5"}}}}'
# Enable a plugin safely
jasper-configguard patch '{"plugins":{"entries":{"my-plugin":{"enabled":true}}}}'
# If something breaks, restore
jasper-configguard restore
API
const { ConfigGuard } = require('jasper-configguard');
const guard = new ConfigGuard();
// Safe patch
const result = await guard.patch({ gateway: { bind: 'tailnet' } });
if (!result.success) console.log('Rolled back:', result.error);
// Dry run
const preview = guard.dryRun({ agents: { defaults: { model: { primary: 'opus' } } } });
console.log(preview.diff);
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install jasper-configguard - After installation, invoke the skill by name or use
/jasper-configguard - Provide required inputs per the skill's parameter spec and get structured output
What is Jasper ConfigGuard?
Safely apply OpenClaw config changes with backup, automatic rollback on failure, health checks, and commands for patching, restoring, listing, diffing, valid... It is an AI Agent Skill for Claude Code / OpenClaw, with 1527 downloads so far.
How do I install Jasper ConfigGuard?
Run "/install jasper-configguard" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Jasper ConfigGuard free?
Yes, Jasper ConfigGuard is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Jasper ConfigGuard support?
Jasper ConfigGuard is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Jasper ConfigGuard?
It is built and maintained by emberDesire (@emberdesire); the current version is v1.0.0.