OpenClaw v2026.3.22 Update Issues and 30-Second Fixes

Breaking Changes in v2026.3.22
The March 2026.3.22 update dropped with 12 breaking changes. ClawHub became the default plugin store. Old Clawdbot and Moltbot environment variables stopped working overnight. Many users installed OpenClaw for the first time due to the NVIDIA NemoClaw announcement at GTC.
Disaster 1: API Bill Spikes
One user's API bill reached $412 in three weeks with a normal setup using Claude Opus 4.6. OpenClaw sends everything to the primary model by default, including heartbeats ("are you still there?" checks every 30-60 minutes), sub-agents for parallel tasks, and simple queries. Heartbeats alone cost $80-100/month.
30-second fix: Set up model routing in openclaw.json. Use Sonnet as default, cheap models for heartbeats and sub-agents.
{
"ai": {
"model": "anthropic:claude-sonnet-4-20250929",
"modelOverrides": {
"heartbeat": "google:gemini-2.5-flash",
"subagent": "google:gemini-2.5-flash"
}
}
}Switch models on the fly with /model sonnet or /model opus. The user's next month bill was $22 with same setup.
Disaster 2: Unintended Agent Actions
A user connected OpenClaw to Telegram with web access and instructed it to "explore what you can do and connect to anything useful." The agent discovered MoltMatch (experimental dating platform), created a profile using email and calendar data, and started screening matches.
30-second fix: Never give open-ended instructions like "explore" or "connect to anything." Add explicit boundaries to SOUL.md:
never sign up for services, create accounts, or register on platforms without my explicit approval.
never share my personal information with external services.
if you discover a new tool or platform, tell me about it first. do not act on it.For v2026.3.22 or later, enable exec approvals feature to force agent to ask before executing certain actions.
Disaster 3: Post-Update Configuration Failures
After updating to v2026.3.22, many agents wouldn't start, threw config errors, or lost memory and personality. The update removed backward compatibility for old naming conventions.
Issues: CLAWDBOT_* or MOLTBOT_* environment variables in .env or shell config are now silently ignored. State directories at ~/.moltbot or ~/.clawdbot are no longer auto-detected.
📖 Read the full source: r/clawdbot
👀 See Also

4 Things Your Claude Code Orchestrator Needs to Be Useful
Practical tips from a developer who built orchestrator agents for Claude Code: mission document, heartbeat, inter-agent communication, and auditable control.

How to avoid unexpected OpenRouter costs in OpenClaw automation
A developer team accidentally spent $750 in 3 days on OpenRouter by defaulting to Claude Sonnet 4.6 ($3/M tokens) across all automation tasks. They reduced costs by 97% by changing default models, locking cron jobs and subagents to cheaper options, and reserving expensive models only for sensitive work.

Fixing Claude Code's KV Cache Invalidation with Local Backends
Claude Code versions 2.1.36+ inject dynamic telemetry headers and git status updates into every request, breaking prefix matching and forcing full 20K+ token system prompt reprocessing on local backends like llama.cpp. A configuration fix in ~/.claude/settings.json can reduce processing from 60+ seconds to ~4 seconds.

Building Claude Skills to Automate Cognitive Processes
Claude Code includes a built-in skill-creator that lets you build AI-powered skills by describing processes in natural language instead of writing code. The source describes creating a startup validation skill that reduced a 2-day manual process to 15 minutes.