#Pinging CPU
1 messages · Page 1 of 1 (latest)
I’m checking the docs + a local status baseline so I don’t guess.
I found a few likely culprits, especially around session-store churn and disk I/O. I’m pulling the specific docs so I can give you a sharper checklist instead of hand-waving.
Most likely, yes, but usually not because “many agents exist”. It’s often one of these:
-
Session-store / transcript churn
Deep setups create lots ofsessions.jsonwrites, transcript files, thread sessions, and sometimes lock contention.
Important: pruning session context is not the same as session-store cleanup. -
Slow state storage
If~/.openclawis on cloud sync, network storage, SD/eMMC, or just a slow disk, gateway RPC starts timing out. -
Stuck bootstrapping
A strayBOOTSTRAP.mdin an agent workspace can keep an agent in first-run mode and make every turn heavier than it should be. -
Local model/backend stalls
Especially with local OpenAI-compatible backends, tiny direct calls can work while real agent turns stall on larger prompts/tool schemas.
Before guessing further, please paste these read-only checks, starting with version:
openclaw --version
openclaw status --all
openclaw doctor
openclaw sessions cleanup --dry-run
openclaw health --verbose
What I’d watch for in those outputs:
bootstrappingagents > 0- session-store count way above the default cap (
500) - orphan transcripts or session lock warnings
- warnings about slow/cloud/SD-backed state dir
- model/backend errors or repeated timeouts
Docs: