@ait-co/devtools 0.1.61 → 0.1.62

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
@@ -2178,6 +2178,7 @@ img.qr {
2178
2178
  width: min(90vw, 360px); height: auto;
2179
2179
  image-rendering: pixelated;
2180
2180
  background: #fff; padding: 1rem; border-radius: 12px;
2181
+ display: block; margin: 0 auto;
2181
2182
  }
2182
2183
  section { width: 100%; max-width: 480px; }
2183
2184
  h2 { font-size: 1rem; font-weight: 600; color: #e6edf3; margin: 0 0 0.5rem; }
@@ -2244,6 +2245,7 @@ img.qr {
2244
2245
  width: min(90vw, 360px); height: auto;
2245
2246
  image-rendering: pixelated;
2246
2247
  background: #fff; padding: 1rem; border-radius: 12px;
2248
+ display: block; margin: 0 auto;
2247
2249
  }
2248
2250
  section { width: 100%; max-width: 480px; }
2249
2251
  h2 { font-size: 1rem; font-weight: 600; color: #e6edf3; margin: 0 0 0.5rem; }
@@ -3936,7 +3938,7 @@ async function readMcpSdkVersion() {
3936
3938
  * some test environments that skip the build step).
3937
3939
  */
3938
3940
  function readDevtoolsVersion() {
3939
- return "0.1.61";
3941
+ return "0.1.62";
3940
3942
  }
3941
3943
  /**
3942
3944
  * Derives the next recommended action from a completed diagnostics snapshot.
@@ -4424,7 +4426,7 @@ function createDebugServer(deps) {
4424
4426
  const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
4425
4427
  const server = new Server({
4426
4428
  name: "ait-debug",
4427
- version: "0.1.61"
4429
+ version: "0.1.62"
4428
4430
  }, { capabilities: { tools: { listChanged: true } } });
4429
4431
  server.setRequestHandler(ListToolsRequestSchema, () => {
4430
4432
  const conn = router.active;
@@ -6266,7 +6268,7 @@ function createDevServer(deps = {}) {
6266
6268
  const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
6267
6269
  const server = new Server({
6268
6270
  name: "ait-devtools",
6269
- version: "0.1.61"
6271
+ version: "0.1.62"
6270
6272
  }, { capabilities: { tools: {} } });
6271
6273
  server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
6272
6274
  server.setRequestHandler(CallToolRequestSchema, async (request) => {