# Send Config Guardian to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "config-guardian",
    "name": "Config Guardian",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/abdhilabs/config-guardian",
    "canonicalUrl": "https://clawhub.ai/abdhilabs/config-guardian",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/config-guardian",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-guardian",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/validate_config.sh",
      "scripts/restore_config.sh",
      "scripts/atomic_apply.sh",
      ".clawhub/origin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "config-guardian",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T14:36:45.522Z",
      "expiresAt": "2026-05-06T14:36:45.522Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-guardian",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=config-guardian",
        "contentDisposition": "attachment; filename=\"config-guardian-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "config-guardian"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/config-guardian"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/config-guardian",
    "downloadUrl": "https://openagent3.xyz/downloads/config-guardian",
    "agentUrl": "https://openagent3.xyz/skills/config-guardian/agent",
    "manifestUrl": "https://openagent3.xyz/skills/config-guardian/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/config-guardian/agent.md"
  }
}
```
## Documentation

### Overview

For Agent use only. Safe config updates with automatic backup, validation, and rollback. Prevents the agent from updating non-existent keys or invalid values.

### When to Use

Use this skill every time you need to update openclaw.json. Prevents:

Updating non-existent config keys
Using invalid values
Breaking the gateway with bad config

### Workflow: Atomic Apply (Default)

For all config changes - handles everything in one command:

./scripts/atomic_apply.sh <config_path> <new_value>
# Example: ./scripts/atomic_apply.sh "agents.defaults.model.primary" "minimax-portal/MiniMax-M2.5"

What it does:

Creates timestamped backup automatically
Applies change via openclaw config set <path> <value>
Validates with openclaw doctor --non-interactive
Auto-rollback if validation fails
Trap ensures rollback even on crash

Backup location:

~/.openclaw/config-guardian-backups/

### Guardrails

Never restart or apply config without explicit user approval
Always use atomic_apply.sh
If validation fails -> config auto-rolled back, don't force it

### Scripts

ScriptPurposeatomic_apply.shDefault - all-in-one safe applyvalidate_config.shValidate via OpenClaw doctorrestore_config.shManual restore from backup
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: abdhilabs
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T14:36:45.522Z
- Expires at: 2026-05-06T14:36:45.522Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/config-guardian)
- [Send to Agent page](https://openagent3.xyz/skills/config-guardian/agent)
- [JSON manifest](https://openagent3.xyz/skills/config-guardian/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/config-guardian/agent.md)
- [Download page](https://openagent3.xyz/downloads/config-guardian)