I want to enable agent 'main' can talk to other agent, and allow main can spawn other agents as sub-agents
{
"agents": {
"defaults": {
"workspace": "/home/openclaw/.openclaw/workspace",
"timeoutSeconds": 3600,
"verboseDefault": "full",
"model": "ollama/gemma4:e4b-h",
"llm": {
"idleTimeoutSeconds": 0
}
},
"list": [
{
"id": "main",
"tools": {
"profile": "full",
"alsoAllow": [
"browser",
"canvas",
"message",
"gateway",
"nodes",
"agents_list",
"tts"
]
},
"subagents": {
"allowAgents": ["onisuzume", "pikachu", "kamonegi"]
}
},
{
"id": "onisuzume",
"name": "onisuzume",
"workspace": "/home/openclaw/.openclaw/workspace/onisuzume",
"agentDir": "/home/openclaw/.openclaw/agents/onisuzume/agent",
"model": "ollama/gemma4:e4b-h",
"tools": {
"profile": "full",
"alsoAllow": ["browser", "canvas", "message", "gateway", "nodes", "agents_list", "tts"]
},
"subagents": {
"maxSpawnDepth": 2,
"runTimeoutSeconds": 900
}
},
{
"id": "pikachu",
"name": "pikachu",
"workspace": "/home/openclaw/.openclaw/workspace/pikachu",
"agentDir": "/home/openclaw/.openclaw/agents/pikachu/agent",
"model": "ollama/gemma4:e4b-h",
"tools": {
"profile": "full",
"alsoAllow": ["browser", "canvas", "message", "gateway", "nodes", "agents_list", "tts"]
},
"subagents": {
"maxSpawnDepth": 2,
"runTimeoutSeconds": 900
}
}
]
},