#My agent with GPT5.4 keeps doing the "if you want I can do this" without ever actually do anything
1 messages · Page 1 of 1 (latest)
Yeah, that’s a real failure mode GPT-5.4 had, “good plan, no action.”
First, paste:
openclaw --version
openclaw status --all
Then check these 3 things:
-
Model route matters
The stricter “act, don’t just plan” contract is for directopenai/*andopenai-codex/*GPT-5 runs. If you’re on a proxy route like OpenRouter, you may not get that behavior. -
Make sure you didn’t opt out
If your config has this, it keeps the old looser behavior:
agents: {
defaults: {
embeddedPi: { executionContract: "default" },
},
}
If needed, set:
agents: {
defaults: {
embeddedPi: { executionContract: "strict-agentic" },
},
}
- It may be waiting on approval