@rubytech/create-maxy 1.0.850 → 1.0.851
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/dist/index.js
CHANGED
|
@@ -2631,8 +2631,8 @@ WantedBy=multi-user.target
|
|
|
2631
2631
|
console.log(" [cdp-check] skipped reason=native-display (on-demand Chromium)");
|
|
2632
2632
|
}
|
|
2633
2633
|
else {
|
|
2634
|
-
console.log(
|
|
2635
|
-
const cdpCheck = spawnSync("curl", ["-sf",
|
|
2634
|
+
console.log(` Verifying browser automation (CDP on port ${CDP_PORT_BRAND})...`);
|
|
2635
|
+
const cdpCheck = spawnSync("curl", ["-sf", `http://127.0.0.1:${CDP_PORT_BRAND}/json/version`, "-o", "/dev/null"], {
|
|
2636
2636
|
timeout: 5000,
|
|
2637
2637
|
stdio: "pipe",
|
|
2638
2638
|
});
|
|
@@ -2649,8 +2649,8 @@ WantedBy=multi-user.target
|
|
|
2649
2649
|
vncLog = `(no boot log found at ${vncLogPath})`;
|
|
2650
2650
|
}
|
|
2651
2651
|
console.error("");
|
|
2652
|
-
console.error(
|
|
2653
|
-
console.error(
|
|
2652
|
+
console.error(`Setup failed: Browser automation unavailable — CDP port ${CDP_PORT_BRAND} not responding`);
|
|
2653
|
+
console.error(` ERROR: Browser automation unavailable — CDP port ${CDP_PORT_BRAND} not responding.`);
|
|
2654
2654
|
console.error(" Chromium should be started by vnc.sh (ExecStartPre). Check the boot log:");
|
|
2655
2655
|
console.error("");
|
|
2656
2656
|
console.error(vncLog);
|
package/package.json
CHANGED
|
@@ -79,7 +79,7 @@ The executor can access these capabilities through agentic steps:
|
|
|
79
79
|
|
|
80
80
|
| Capability | MCP Server | Infrastructure |
|
|
81
81
|
|---|---|---|
|
|
82
|
-
| Browser automation | `@playwright/mcp` | Chromium with CDP on
|
|
82
|
+
| Browser automation | `@playwright/mcp` | Chromium with CDP on the brand's `cdpPort` from `brand.json` (started by `vnc.sh`, always running) |
|
|
83
83
|
| Any MCP-compatible tool | Declared in step's `mcpServers` | Command must be in PATH on the device |
|
|
84
84
|
|
|
85
85
|
The executor cannot:
|