I'm trying to write a configuration for an agent on my gateway that i'm calling web-user it needs access to web tools. my main agent does not. here's what i have so far for the openclaw.json
// ~/.openclaw/agents/web-user/openclaw.json
{
agents: { defaults: { workspace: "~/.openclaw/workspace" } },
"agents": {
"defaults": {
"model": { "primary":"ollama/qwen3.5:9b" },
"models": {
"ollama/qwen3.5:9b": {},
},
"workspace": "/home/user/.openclaw/workspace",
"compaction": {
"mode": "safeguard"
},
"maxConcurrent": 4,
"subagents": {
"maxConcurrent": 8
}
}
},
}