@ait-co/devtools 0.1.124 → 0.1.126
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/{debug-server-B3W_0Ejf.js → debug-server-1dhDA3aw.js} +11 -3
- package/dist/debug-server-1dhDA3aw.js.map +1 -0
- package/dist/{debug-server-BDfeWytB.js → debug-server-Dctc9GAh.js} +10 -2
- package/dist/debug-server-Dctc9GAh.js.map +1 -0
- package/dist/mcp/cli.js +12 -4
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +1 -1
- package/dist/{relay-factory-CqY264j0.js → relay-factory-Dug7W6Ao.js} +20 -3
- package/dist/{relay-factory-CqY264j0.js.map → relay-factory-Dug7W6Ao.js.map} +1 -1
- package/dist/test-runner/bin.js +60 -13
- package/dist/test-runner/bin.js.map +1 -1
- package/dist/test-runner/config.js +1 -1
- package/dist/test-runner/relay-factory.js +19 -2
- package/dist/test-runner/relay-factory.js.map +1 -1
- package/package.json +1 -1
- package/dist/debug-server-B3W_0Ejf.js.map +0 -1
- package/dist/debug-server-BDfeWytB.js.map +0 -1
package/dist/mcp/cli.js
CHANGED
|
@@ -2024,7 +2024,7 @@ async function readMcpSdkVersion() {
|
|
|
2024
2024
|
* some test environments that skip the build step).
|
|
2025
2025
|
*/
|
|
2026
2026
|
function readDevtoolsVersion() {
|
|
2027
|
-
return "0.1.
|
|
2027
|
+
return "0.1.126";
|
|
2028
2028
|
}
|
|
2029
2029
|
/**
|
|
2030
2030
|
* Derives the next recommended action from a completed diagnostics snapshot.
|
|
@@ -3593,7 +3593,15 @@ USAGE
|
|
|
3593
3593
|
OPTIONS
|
|
3594
3594
|
--scheme-url <url> intoss-private:// URL from \`ait deploy --scheme-only\`
|
|
3595
3595
|
(required for standalone relay attach / env3)
|
|
3596
|
-
--timeout <ms> Per-file evaluate timeout in ms (default: 30000)
|
|
3596
|
+
--timeout <ms> Per-file evaluate timeout in ms (default: 30000).
|
|
3597
|
+
Controls how long a single test file is allowed to run
|
|
3598
|
+
before it is considered hung. Does NOT affect how long
|
|
3599
|
+
the CLI waits for a human to scan the QR code — use
|
|
3600
|
+
--attach-timeout for that.
|
|
3601
|
+
--attach-timeout <ms> How long to wait for a human to scan the QR code with
|
|
3602
|
+
their phone (default: 600000 — 10 minutes). Omit to
|
|
3603
|
+
use the relay factory's generous default. Decrease for
|
|
3604
|
+
CI environments where a scan should arrive quickly.
|
|
3597
3605
|
--cell-sdk-line <line> SDK line to inject as __AIT_CELL__.sdkLine (2.x|3.x)
|
|
3598
3606
|
--cell-platform <plat> Platform to inject as __AIT_CELL__.platform
|
|
3599
3607
|
(mock|ios|android, default: AIT_CELL_PLATFORM env)
|
|
@@ -6702,7 +6710,7 @@ function createDebugServer(deps) {
|
|
|
6702
6710
|
};
|
|
6703
6711
|
const server = new Server({
|
|
6704
6712
|
name: "ait-debug",
|
|
6705
|
-
version: "0.1.
|
|
6713
|
+
version: "0.1.126"
|
|
6706
6714
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
6707
6715
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
6708
6716
|
const conn = router.active;
|
|
@@ -8674,7 +8682,7 @@ function createDevServer(deps = {}) {
|
|
|
8674
8682
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
8675
8683
|
const server = new Server({
|
|
8676
8684
|
name: "ait-devtools",
|
|
8677
|
-
version: "0.1.
|
|
8685
|
+
version: "0.1.126"
|
|
8678
8686
|
}, { capabilities: { tools: {} } });
|
|
8679
8687
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
8680
8688
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|