@openclaw/acpx 2026.5.28-beta.3 → 2026.5.28-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +5 -4
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @openclaw/acpx
|
|
2
|
+
|
|
3
|
+
Official ACP runtime backend for OpenClaw.
|
|
4
|
+
|
|
5
|
+
ACPx lets OpenClaw run external coding harnesses through the Agent Client Protocol while OpenClaw still owns sessions, channels, delivery, permissions, and Gateway state.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @openclaw/acpx
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Restart the Gateway after installing or updating the plugin.
|
|
14
|
+
|
|
15
|
+
## What it provides
|
|
16
|
+
|
|
17
|
+
- ACP-backed agent runtime sessions.
|
|
18
|
+
- Plugin-owned session and transport management.
|
|
19
|
+
- MCP bridge helpers for OpenClaw tools and plugin tools.
|
|
20
|
+
- Static runtime assets used by the ACP process bridge.
|
|
21
|
+
|
|
22
|
+
## Configure
|
|
23
|
+
|
|
24
|
+
Use the ACP docs for harness-specific setup, permission modes, and model/runtime selection:
|
|
25
|
+
|
|
26
|
+
- https://docs.openclaw.ai/tools/acp-agents-setup
|
|
27
|
+
- https://docs.openclaw.ai/tools/acp-agents
|
|
28
|
+
|
|
29
|
+
## Package
|
|
30
|
+
|
|
31
|
+
- Plugin id: `acpx`
|
|
32
|
+
- Package: `@openclaw/acpx`
|
|
33
|
+
- Minimum OpenClaw host: `2026.4.25`
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/acpx",
|
|
9
|
-
"version": "2026.5.28-beta.
|
|
9
|
+
"version": "2026.5.28-beta.4",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@agentclientprotocol/claude-agent-acp": "0.37.0",
|
|
12
12
|
"@zed-industries/codex-acp": "0.15.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/acpx",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"description": "OpenClaw ACP runtime backend with plugin-owned session and transport management.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"minHostVersion": ">=2026.4.25"
|
|
27
27
|
},
|
|
28
28
|
"compat": {
|
|
29
|
-
"pluginApi": ">=2026.5.28-beta.
|
|
29
|
+
"pluginApi": ">=2026.5.28-beta.4"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.5.28-beta.
|
|
32
|
+
"openclawVersion": "2026.5.28-beta.4",
|
|
33
33
|
"staticAssets": [
|
|
34
34
|
{
|
|
35
35
|
"source": "./src/runtime-internals/mcp-proxy.mjs",
|
|
@@ -54,10 +54,11 @@
|
|
|
54
54
|
"dist/**",
|
|
55
55
|
"openclaw.plugin.json",
|
|
56
56
|
"npm-shrinkwrap.json",
|
|
57
|
+
"README.md",
|
|
57
58
|
"skills/**"
|
|
58
59
|
],
|
|
59
60
|
"peerDependencies": {
|
|
60
|
-
"openclaw": ">=2026.5.28-beta.
|
|
61
|
+
"openclaw": ">=2026.5.28-beta.4"
|
|
61
62
|
},
|
|
62
63
|
"peerDependenciesMeta": {
|
|
63
64
|
"openclaw": {
|