#my openclaw has been AWEFUL! Can i fire it and get a new one?
5 messages · Page 1 of 1 (latest)
Yeah, that sounds miserable. A few likely causes:
/modelonly changes the current chat session
It does not automatically retarget:- heartbeats (
agents.defaults.heartbeat.model) - isolated cron jobs (
openclaw cron edit <jobId> --model ...) - your global default (
agents.defaults.model.primary)
- heartbeats (
So if you told chat “use Gemini”, heartbeats/jobs may still be burning Anthropic.
-
Heartbeats are probably your biggest cost leak
If you want them off:openclaw config set agents.defaults.heartbeat.every "0m"If you want them cheaper instead:
{
agents: {
defaults: {
heartbeat: {
every: "2h",
model: "google/gemini-2.5-flash",
isolatedSession: true,
lightContext: true,
target: "none"
}
}
}
}
isolatedSession + lightContext is the big token saver.
-
Telegram breaking daily is usually transport/network
First checks:openclaw status --all openclaw channels status --probe openclaw logs --followIf logs show
fetch failedorgetUpdates failed, common fixes are:{ channels: { telegram: { network: { autoSelectFamily: false } // or proxy: "socks5://user:pass@host:1080" }
}
}
Broken IPv6 / flaky VPS egress is a very common Telegram failure mode.
- Check cron jobs explicitly
If jobs were created with Anthropic pinned, they stay pinned until edited.openclaw cron list
If you paste these, I can help narrow it down fast:
openclaw --version