Can you help me understand regular default agent setup and create config for acp agent that spawns claude code harness to do work for specific projects.
I got this config for my main agent:
"agents": {
"defaults": {
"model": {
"primary": "opencode/kimi-k2.5",
"fallbacks": [
"openai-codex/gpt-5.4",
"github-copilot/gpt-5.4",
...
and this was added as a acp agent definition in config :
"agents": {
"list": [
{
"id": "claude",
"runtime": {
"type": "acp",
"acp": {
"agent": "claude",
"backend": "acpx",
"mode": "persistent",
"cwd": "/home/clawdbot/clawd"
}
}
}
]
},
how should my config be set up correctly to have main agent and add acp functionality for it?