@Keith Motte Thanks Keith, great insights. I saw that OpenAI is much friendlier to OpenClaw since they acquired Pete. On my new OC setup I connected the gateway to my openai account via OAuth so we'll see how that goes. It's the $30/mo business tier seat. I'm optimistic that the default model will be gpt 5.4, (which is too costly to run default via API) but I'm not sure how/when any limit caps will kick in. I did try offloading some tasks to Qwen and lighter LLM models with my first build. One hurdle I ran into was that my main agent's heartbeat directed him to check for tasks in the PM tool and then if there was work to do, to start on it. Doing this on a lightweight model meant that the task work it did during heartbeats was lower quality. The solution was to change the heartbeat to only CHECK for tasks, and then when work was discovered, pass it off to a subagent or other specialized agent. Working on forcing new sessions to keep the context window fresh/clean as often as I can to keep the cache context clear.