@ait-co/devtools 0.1.87 → 0.1.88
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 +3 -3
- package/dist/mcp/server.js +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +1 -1
package/dist/mcp/cli.js
CHANGED
|
@@ -4781,7 +4781,7 @@ async function readMcpSdkVersion() {
|
|
|
4781
4781
|
* some test environments that skip the build step).
|
|
4782
4782
|
*/
|
|
4783
4783
|
function readDevtoolsVersion() {
|
|
4784
|
-
return "0.1.
|
|
4784
|
+
return "0.1.88";
|
|
4785
4785
|
}
|
|
4786
4786
|
/**
|
|
4787
4787
|
* Derives the next recommended action from a completed diagnostics snapshot.
|
|
@@ -5290,7 +5290,7 @@ function createDebugServer(deps) {
|
|
|
5290
5290
|
const collector = collectorDep ?? new InMemoryDiagnosticsCollector();
|
|
5291
5291
|
const server = new Server({
|
|
5292
5292
|
name: "ait-debug",
|
|
5293
|
-
version: "0.1.
|
|
5293
|
+
version: "0.1.88"
|
|
5294
5294
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
5295
5295
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
5296
5296
|
const conn = router.active;
|
|
@@ -7344,7 +7344,7 @@ function createDevServer(deps = {}) {
|
|
|
7344
7344
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
7345
7345
|
const server = new Server({
|
|
7346
7346
|
name: "ait-devtools",
|
|
7347
|
-
version: "0.1.
|
|
7347
|
+
version: "0.1.88"
|
|
7348
7348
|
}, { capabilities: { tools: {} } });
|
|
7349
7349
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
7350
7350
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/mcp/server.js
CHANGED
|
@@ -968,7 +968,7 @@ function createDevServer(deps = {}) {
|
|
|
968
968
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
969
969
|
const server = new Server({
|
|
970
970
|
name: "ait-devtools",
|
|
971
|
-
version: "0.1.
|
|
971
|
+
version: "0.1.88"
|
|
972
972
|
}, { capabilities: { tools: {} } });
|
|
973
973
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
974
974
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
package/dist/panel/index.js
CHANGED
|
@@ -26561,7 +26561,7 @@ function readGlobalString(key) {
|
|
|
26561
26561
|
}
|
|
26562
26562
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
26563
26563
|
function getVersion() {
|
|
26564
|
-
return "0.1.
|
|
26564
|
+
return "0.1.88";
|
|
26565
26565
|
}
|
|
26566
26566
|
let panelVisibleSince = null;
|
|
26567
26567
|
let accumulatedMs = 0;
|
|
@@ -30848,7 +30848,7 @@ function Panel() {
|
|
|
30848
30848
|
color: "#666",
|
|
30849
30849
|
fontWeight: 400
|
|
30850
30850
|
},
|
|
30851
|
-
children: ["v", "0.1.
|
|
30851
|
+
children: ["v", "0.1.88"]
|
|
30852
30852
|
}),
|
|
30853
30853
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30854
30854
|
type: "button",
|
package/package.json
CHANGED