#acp run time not configured
1 messages Β· Page 1 of 1 (latest)
First, can you paste openclaw --version? Version matters a lot for ACP/sub-agent behavior.
Likely issue: your agent tried to spawn an ACP session, not a native OpenClaw sub-agent. ACP is for external harnesses like Codex / Claude Code / Gemini CLI; native sub-agents use sessions_spawn with the default runtime: "subagent" and donβt require ACP. The docs call out that ACP errors like ACP runtime backend is not configured mean the acpx backend/plugin is missing/disabled, and recommend /acp doctor. (docs.openclaw.ai)
For your case:
{
agents: {
defaults: {
llm: {
idleTimeoutSeconds: 300 // or 600; 0 disables idle timeout
},
timeoutSeconds: 1800,
subagents: {
runTimeoutSeconds: 1800
}
}
}
}
Then restart the gateway.
If you want native sub-agents, tell the agent explicitly:
Use
sessions_spawnwithruntime: "subagent"/ default runtime. Do not use ACP.
If you want Codex/Claude Code/Gemini ACP sessions, run: