A specialized skill for safely managing and testing OpenClaw configuration changes using a Blue/Green deployment pattern. Use when you need to test new setti...
Security Analysis
high confidenceThe skill's code and instructions match its stated purpose (managing OpenClaw configs via a blue/green pattern); it manipulates only the user's OpenClaw config files and invokes the OpenClaw CLI as expected.
The name/description claim a Blue/Green deployer for OpenClaw; the provided script implements that behavior (copies, backups, creates symlinks, runs `openclaw status`, promotes or restores). Required files and actions are proportional to the purpose.
SKILL.md instructs running the included deploy.sh and using jq for validation; the script itself operates only on $HOME/.openclaw/*. It does remove and recreate the live config file (via symlink and cp) which is expected but potentially disruptive if run on a production host without testing. SKILL.md lists `jq` validation steps that are not invoked by the script (you must run them manually if desired).
Instruction-only skill with an included shell script and no install spec — nothing is downloaded or installed by the skill itself, minimizing install-time risk.
The skill declares no required env vars or credentials and only touches $HOME/.openclaw config files. The dependency list mentions `jq` but the script does not call it; `openclaw` is used and is a reasonable dependency given the stated purpose.
The skill is not always-enabled and does not change other skills or global settings. It does modify files under the user's OpenClaw configuration, so the agent running the skill must be trusted to perform filesystem operations on that path. The platform default allowing autonomous invocation means the agent could run this script without explicit user action — consider invocation policy if that matters.
Guidance
This skill appears to do what it says, but it modifies your live OpenClaw config files. Before installing or running: (1) review scripts/deploy.sh yourself to confirm behavior; (2) ensure you trust the `openclaw` binary on your system (the script runs `openclaw status`); (3) take an independent backup of $HOME/.openclaw/openclaw.json in case of failures; (4) test the workflow on a non-production account or copy of your config; (5) note SKILL.md mentions using `jq` for validation but the included script does not call it — run `jq empty openclaw.json.green` manually if you want stricter JSON checks; and (6) consider restricting autonomous invocation if you don't want the agent to run the deployment script without explicit approval.
Latest Release
v2.0.0
Blue-green-deployer 2.0.0 is a significant update introducing versioning and dependency metadata. - Added explicit `version` and `dependencies` fields to SKILL.md for improved clarity and reproducibility. - Declared dependencies on `openclaw` and `jq` in the documentation. - Corrected minor documentation issues (e.g., file naming typo: `open:openclaw.json.green` → `openclaw.json.green`). - No changes to the documented deployment script workflow.
Popular Skills
Published by @joshualeecowan33-ui on ClawHub