Documentation Index
Fetch the complete documentation index at: https://docs.claw-link.dev/llms.txt
Use this file to discover all available pages before exploring further.
people think they are starting a normal OpenClaw chat, when they are really trying to use a different runtime path.This page explains what ACP sessions are, how they differ from normal chats, what has to be enabled first, and why they sometimes seem to do nothing.
Helpful mental model: normal chats are the default assistant path; ACP sessions are a separate execution path where OpenClaw coordinates work through ACP-backed runtime plumbing.
At a glance
- ACP sessions are a different execution path, not just normal chats with extra sauce.
- They depend on ACP-related runtime support being present and loaded.
- If ACPX was enabled recently, test in a fresh chat before declaring it broken.
Short version
An ACP session is a session where OpenClaw is using an ACP-backed runtime path instead of only behaving like the default model-driven assistant. That usually means OpenClaw is:- using ACP-related runtime support
- relying on ACPX or related runtime plumbing
- brokering work to an external agent/runtime path
- exposing tools or behaviors that depend on ACP support being available
What happens in an ACP session
In plain English, the flow usually looks like this:- you ask OpenClaw to do something that belongs on an ACP-backed path
- OpenClaw needs ACP support available in the current environment
- ACPX or the relevant ACP runtime layer has to be enabled and loaded
- OpenClaw starts or routes work through the ACP-backed session/runtime
- the external runtime does the work
- results come back into the OpenClaw conversation
The mental model that helps
If normal OpenClaw usage is:“the assistant handles the request through its normal configured path”then ACP session usage is closer to:
“OpenClaw is acting as the coordinator for a different agent/runtime execution path.”That is why ACP setup has extra moving parts.
What an ACP session is not
It is not automatically created just because:- you installed a coding CLI somewhere on the machine
- you saw ACP mentioned in a support thread
- you enabled a plugin and assumed every session became ACP-aware
- you are using OpenClaw normally and expected ACP behavior to appear by default
ACP sessions vs normal OpenClaw chats
Normal OpenClaw chat
Usually means:- default assistant behavior
- configured model/provider path
- standard tool/runtime behavior for that environment
- no ACP-specific runtime required
ACP session
Usually means:- the requested workflow depends on ACP support
- ACPX or ACP runtime plumbing must be available
- OpenClaw may be coordinating work through an external runtime/backend
- the current environment has to expose the right ACP-related tools or session behavior
What has to be true before ACP sessions work
1) ACP support has to be available in the install
This is the first gate. If your current OpenClaw setup does not have ACP-related runtime support loaded, ACP sessions are not going to work because there is nothing there to route through.2) ACPX may need to be allowed or enabled
If your setup uses a plugin allowlist, ACPX usually needs to be included. A commonly referenced example is:3) The gateway has to reload the new state
If ACPX was just enabled but the gateway never reloaded, OpenClaw can keep behaving like nothing changed.4) The current chat may need to be replaced
This one gets people constantly. If you enabled ACP support after the chat already started, the current session may still reflect the old tool/runtime catalog. Start a fresh chat before concluding ACP is broken.Why ACP sessions sometimes look like they are not working
Reason 1: ACPX is missing
If the ACPX plugin/runtime layer is not available, ACP-specific flows usually will not surface correctly.Reason 2: you are still in a stale session
The environment changed, but the current chat did not.Reason 3: you are expecting ACP behavior from a normal agent path
This is probably the biggest confusion point. Installing a CLI or reading ACP docs does not mean every OpenClaw chat is now an ACP session.Reason 4: gateway config changed, but runtime did not reload
Also very common.Reason 5: the issue is really configuration, not ACP itself
Sometimes the problem is not the session model. It is just:- ACPX not allowed
- gateway not restarted
- version mismatch after upgrade or rollback
- current runtime not exposing the behavior you expected
A practical ACP session checklist
If you think ACP sessions should work but they do not, use this order:1. Confirm that the workflow actually depends on ACP
Not every OpenClaw task does.2. Check whether ACPX is enabled or allowed
If needed, update the allowlist.3. Restart the gateway
4. Check status
5. Start a fresh chat
Do not keep retesting in the stale session forever.6. Retry the ACP-specific workflow
Now you have a cleaner test.What users usually mean when they say “ACP session”
In practice, they usually mean one of these:- “I want OpenClaw to use an external coding/runtime path”
- “I expected ACP-backed tools or behavior to appear”
- “I installed something ACP-related and do not know how OpenClaw is supposed to use it”
- “I am following a guide that depends on ACPX and I am not sure whether my session is actually ACP-backed”
How to tell whether you are debugging the right thing
Ask yourself:- Am I trying to use a workflow that explicitly depends on ACP?
- Did I enable ACPX only after this chat was already open?
- Did I restart the gateway after changing config?
- Am I mixing up normal agent behavior with ACP-backed behavior?
Common mistakes
Treating every OpenClaw session as if it should be ACP-backed
It should not.Installing a CLI and assuming OpenClaw automatically adopts it
Still no.Forgetting the gateway reload step
A classic.Testing only in one old conversation
Also a classic.Final thought
ACP sessions in OpenClaw are easier to understand if you stop thinking of them as “special chats” and start thinking of them as a different runtime path. Once that clicks, the setup logic becomes much clearer:- make ACP support available
- enable ACPX if needed
- restart gateway
- start a fresh chat
- run the ACP-specific workflow again
Related pages
ACP vs normal OpenClaw agents: what’s the difference?How to enable the ACPX plugin in OpenClawWhy ACPX isn’t showing up in OpenClawHow to fix “acpx plugin not found” after rolling back OpenClaw
