I’ve tried just about everything I can think of and my agent can think of and no matter what constraints we put in place I can’t keep the agent from narrating everything it’s doing during tasks and driving up the session context. I’m having to start new sessions frequently and burning through tokens because it won’t stop giving me play by plays. It’s at the point now where the AI itself is out of ideas to force itself to adhere to the instruction. Seemed like a massive problem.
#Agent won’t adhere to agents.md file
1 messages · Page 1 of 1 (latest)
First thing, can you paste openclaw --version?
What you’re describing usually is not the agent “ignoring AGENTS.md”. It’s usually session/tool verbosity, which AGENTS.md does not control.
Try these in the noisy chat/session as standalone messages:
/verbose off
/trace off
/reasoning off
A couple gotchas:
/verbose offcreates a session override, so if it keeps coming back, open the Sessions view in Control UI and set verbose back to inherit- also check your config for
verboseDefault, because if that’sonorfull, every new session starts noisy
Config default should look like:
{
agents: {
defaults: {
verboseDefault: "off"
}
}
}
Relevant docs: