mission-control/tests/fixtures/openclaw/openclaw.json

50 lines
1.1 KiB
JSON

{
"version": 1,
"gateway": {
"host": "127.0.0.1",
"port": 18789
},
"agents": {
"defaults": {
"workspace": "workspaces"
},
"list": [
{
"id": "engineering-bot",
"name": "engineering-bot",
"default": true,
"workspace": "workspaces/engineering-bot",
"agentDir": "agents/engineering-bot",
"identity": {
"name": "Engineering Bot",
"theme": "software-engineer",
"emoji": ":gear:"
},
"model": {
"primary": "openai/gpt-5"
},
"tools": {
"allow": ["sessions_send", "sessions_history", "shell"]
}
},
{
"id": "research-bot",
"name": "research-bot",
"workspace": "workspaces/research-bot",
"agentDir": "agents/research-bot",
"identity": {
"name": "Research Bot",
"theme": "analyst",
"emoji": ":book:"
},
"model": {
"primary": "anthropic/claude-sonnet-4-5"
},
"tools": {
"allow": ["web", "sessions_send"]
}
}
]
}
}