@openclaw/acpx 2026.5.10-beta.3 → 2026.5.10-beta.5

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.
Files changed (2) hide show
  1. package/dist/mcp-proxy.mjs +12 -4
  2. package/package.json +4 -4
@@ -64,6 +64,17 @@ function rewriteLine(line, mcpServers) {
64
64
  }
65
65
  }
66
66
 
67
+ export function createTargetSpawnOptions(platform = process.platform) {
68
+ const options = {
69
+ stdio: ["pipe", "pipe", "inherit"],
70
+ env: process.env,
71
+ };
72
+ if (platform === "win32") {
73
+ options.windowsHide = true;
74
+ }
75
+ return options;
76
+ }
77
+
67
78
  function isMainModule() {
68
79
  const mainPath = process.argv[1];
69
80
  if (!mainPath) {
@@ -75,10 +86,7 @@ function isMainModule() {
75
86
  function main() {
76
87
  const { targetCommand, mcpServers } = decodePayload(process.argv.slice(2));
77
88
  const target = splitCommandLine(targetCommand);
78
- const child = spawn(target.command, target.args, {
79
- stdio: ["pipe", "pipe", "inherit"],
80
- env: process.env,
81
- });
89
+ const child = spawn(target.command, target.args, createTargetSpawnOptions());
82
90
 
83
91
  if (!child.stdin || !child.stdout) {
84
92
  throw new Error("Failed to create MCP proxy stdio pipes");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/acpx",
3
- "version": "2026.5.10-beta.3",
3
+ "version": "2026.5.10-beta.5",
4
4
  "description": "OpenClaw ACP runtime backend",
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.10-beta.3"
29
+ "pluginApi": ">=2026.5.10-beta.5"
30
30
  },
31
31
  "build": {
32
- "openclawVersion": "2026.5.10-beta.3",
32
+ "openclawVersion": "2026.5.10-beta.5",
33
33
  "staticAssets": [
34
34
  {
35
35
  "source": "./src/runtime-internals/mcp-proxy.mjs",
@@ -59,7 +59,7 @@
59
59
  "skills/**"
60
60
  ],
61
61
  "peerDependencies": {
62
- "openclaw": ">=2026.5.10-beta.3"
62
+ "openclaw": ">=2026.5.10-beta.5"
63
63
  },
64
64
  "peerDependenciesMeta": {
65
65
  "openclaw": {