OpenClaw 2026.3.2 Update Disables Agent Tools by Default

What Happened
After updating to OpenClaw 2026.3.2, users are reporting that their agents appear "dumb"—they can respond to prompts but cannot execute tasks. This is because the update disabled all agent tool permissions by default.
Affected Tools
The default tool disablement affects core functionality including:
exectoolweb_fetchtool- Other unspecified tools
Without these tools enabled, agents can only generate text responses but cannot perform actions like executing commands or fetching web content.
The Fix
To restore full functionality, add the following configuration to your openclaw.json file:
{
"tools": {
"profile": "full",
"sessions": {
"visibility": "all"
}
}
}After saving the configuration file, restart your agent. This should restore all tool functionality.
Community Response
The Reddit post notes that this default setting "feels like a pretty questionable default for a new release" and aims to save others debugging time. Users experiencing issues after applying the fix are encouraged to comment on the original post.
📖 Read the full source: r/openclaw
👀 See Also

Claude 4.6 Opus Can Reproduce Linux's list.h From Minimal Input
A user demonstrated that Claude 4.6 Opus can generate a near-identical copy of Linux's list.h header file when given the first 43 lines as input with temperature set to 0, raising questions about GPL licensing implications for AI models trained on open-source code.

Subquadratic Debuts 12M Token Context Window for AI Models
Subquadratic releases a 12-million-token context window, shattering previous limits for LLM inference and enabling processing of entire codebases in a single pass.

Tennessee Woman Jailed for Six Months Due to AI Facial Recognition Error
Angela Lipps, a 50-year-old Tennessee grandmother, spent nearly six months in jail after Fargo police used facial recognition software to incorrectly identify her as a suspect in a North Dakota bank fraud case. She was released on Christmas Eve after bank records proved she was 1,200 miles away at the time of the crimes.

Claude-Code v2.1.51: Security fixes, performance improvements, and new remote control feature
Claude-Code v2.1.51 adds a remote-control subcommand for external builds, fixes two security vulnerabilities in hooks, improves BashTool performance, and reduces context usage by persisting large tool results to disk at 50K characters.