Jump to related tools in the same category or review the original source on GitHub.

Health & Fitness @emberdesire Updated 7/16/2026 2,177 downloads 1 stars Security: Pass

Jasper Configguard OpenClaw Plugin & Skill | ClawHub

Looking to integrate Jasper Configguard into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate health & fitness tasks instantly, without having to write custom tools from scratch.

What this skill does

--- name: jasper-configguard version: 1.0.0 description: Safe config changes for OpenClaw with automatic rollback. Backs up before patching, health-checks after restart, auto-rolls back on failure. Commands: patch, restore, list, diff, validate, doctor. --- # Jasper ConfigGuard v1.0.0 Safe config changes for OpenClaw with automatic rollback. Never brick your gateway again. ## Setup ```bash npm install -g jasper-configguard ``` ## Usage ### Apply a config change safely ```bash jasper-configguard patch '{"gateway":{"bind":"tailnet"}}' ``` The tool will: 1. Back up your current config 2. Apply the patch (deep merge) 3. Restart the gateway 4. Wait for health check 5. **Auto-rollback** if gateway fails ### Preview changes ```bash jasper-configguard patch --dry-run '{"agents":{"defaults":{"model":{"primary":"opus"}}}}' ``` ### Restore from backup ```bash jasper-configguard restore ``` ### List backups ```bash jasper-configguard list ``` ### Check health ```bash jasper-configguard doctor ``` ## Agent Integration Use from your agent to safely modify OpenClaw config: ```bash # 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 ```javascript 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); ```

Install

ClawHub CLI
openclaw skills install @emberdesire/jasper-configguard
Node.js (npx)
npx clawhub@latest install jasper-configguard

Full SKILL.md

Open original

SKILL.md content below is scrollable.


name: jasper-configguard version: 1.0.0 description: Safe config changes for OpenClaw with automatic rollback. Backs up before patching, health-checks after restart, auto-rolls back on failure. Commands: patch, restore, list, diff, validate, doctor.

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:

  1. Back up your current config
  2. Apply the patch (deep merge)
  3. Restart the gateway
  4. Wait for health check
  5. 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);
ClawHub Registry URL: https://clawhub.ai/emberdesire/skills/jasper-configguard

Related skills

If this matches your use case, these are close alternatives in the same category.