@ait-co/devtools 0.1.111 → 0.1.112

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/mcp/cli.js CHANGED
@@ -233,7 +233,7 @@ function startMaxAgeWatchdog(onExpired, opts = {}) {
233
233
  * resolved against `cwd`. `bundleTestFile` requires an absolute path, so the
234
234
  * absolute output feeds it directly.
235
235
  *
236
- * @param patterns Glob patterns or file paths (e.g. `['src/**\/*.phone.test.ts']`).
236
+ * @param patterns Glob patterns or file paths (e.g. `['src/**\/*.ait.test.ts']`).
237
237
  * @param cwd Base directory for relative patterns/results.
238
238
  * @returns Sorted, de-duplicated absolute file paths. Empty when nothing matches.
239
239
  */
@@ -652,7 +652,7 @@ DESCRIPTION
652
652
  yet (it currently resolves the matched files and defers to that tool).
653
653
 
654
654
  EXAMPLE
655
- devtools-test 'src/**/*.phone.test.ts' --timeout 60000
655
+ devtools-test 'src/**/*.ait.test.ts' --timeout 60000
656
656
 
657
657
  `.trimStart();
658
658
  /**
@@ -4581,7 +4581,7 @@ const DEBUG_TOOL_DEFINITIONS = [
4581
4581
  files: {
4582
4582
  type: "array",
4583
4583
  items: { type: "string" },
4584
- description: "Glob patterns or file paths to run (e.g. [\"src/**/*.phone.test.ts\"]). Resolved relative to projectRoot when given, else the daemon cwd. Required, non-empty."
4584
+ description: "Glob patterns or file paths to run (e.g. [\"src/**/*.ait.test.ts\"]). Resolved relative to projectRoot when given, else the daemon cwd. Required, non-empty."
4585
4585
  },
4586
4586
  projectRoot: {
4587
4587
  type: "string",
@@ -5375,7 +5375,7 @@ async function readMcpSdkVersion() {
5375
5375
  * some test environments that skip the build step).
5376
5376
  */
5377
5377
  function readDevtoolsVersion() {
5378
- return "0.1.111";
5378
+ return "0.1.112";
5379
5379
  }
5380
5380
  /**
5381
5381
  * Derives the next recommended action from a completed diagnostics snapshot.
@@ -6295,7 +6295,7 @@ function createDebugServer(deps) {
6295
6295
  }
6296
6296
  const server = new Server({
6297
6297
  name: "ait-debug",
6298
- version: "0.1.111"
6298
+ version: "0.1.112"
6299
6299
  }, { capabilities: { tools: { listChanged: true } } });
6300
6300
  server.setRequestHandler(ListToolsRequestSchema, () => {
6301
6301
  const conn = router.active;
@@ -8195,7 +8195,7 @@ function createDevServer(deps = {}) {
8195
8195
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
8196
8196
  const server = new Server({
8197
8197
  name: "ait-devtools",
8198
- version: "0.1.111"
8198
+ version: "0.1.112"
8199
8199
  }, { capabilities: { tools: {} } });
8200
8200
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
8201
8201
  server.setRequestHandler(CallToolRequestSchema, async (request) => {