OpenClaw Config Manager
A unified skill to audit, diff, copy, add models to, and switch default models in OpenClaw (龙虾) instance configs.
UtilitiesIntermediate★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
audit: validates providers, models, the default model, aliases and plugin consistency.diff(alias ofcompare): semantic diff of two openclaw.json files, reporting added/removed/changed items (cost fields skipped unless--include-cost).copy: copies a whole provider between configs, merging models without deleting target-only entries.add-model: adds a model definition plus alias, optionally pulling the provider from a source config first.switch: the only subcommand that changesagents.defaults.model, with existence checks and automatic backup.- Shared conveniences: auto-discovery of the config in three standard paths, lobster nicknames from
lobsters.json, timestamped backups (20 kept),--dry-run,--restart, and automatic pre/post audits (--no-auditto skip).
Who it's for
- Operators running multiple OpenClaw gateway instances that must stay in sync
- Anyone debugging "why does DeepSeek work on this instance but not that one?"
- People who have broken a default model or alias while hand-editing JSON
Examples
- Enable DeepSeek:
audit --config 乙虾→add-model gateway-provider deepseek-v4-pro --config 乙虾 --from 甲虾 --alias "DeepSeek V4 Pro"→switch gateway-provider/deepseek-v4-pro --config 乙虾 --restart - Diff two lobsters:
python3 scripts/cli.py diff 甲虾 乙虾 - Clone a working config:
copy gateway-provider --from 甲虾 --to 乙虾 --alias --restart, then re-runaudit
Pitfalls it documents: never create a standalone
deepseekprovider, use the suffixlessdeepseek-v4-proid, and cold-restart after adding new providers.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/openclaw/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the openclaw folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/openclaw/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/openclaw ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Confirm Python 3 and git are available:
python3 --version,git --version - Clone the repository:
git clone https://github.com/daymade/claude-code-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r claude-code-skills/openclaw ~/.claude/skills/ - (Optional) Create a nickname registry at
~/.openclaw/lobsters.jsonusingreferences/lobster_registry.example.jsonas a template. - Restart Claude Code and ask something like "audit my openclaw.json" to trigger the skill.
- Smoke test:
python3 ~/.claude/skills/openclaw/scripts/cli.py list --validate
View source on GitHub ↗License: MIT