@veolab/discoverylab 1.2.1 → 1.2.2

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/cli.js CHANGED
@@ -1,17 +1,21 @@
1
1
  #!/usr/bin/env node
2
+ import {
3
+ APP_VERSION
4
+ } from "./chunk-6EGBXRDK.js";
5
+ import "./chunk-MLKGABMK.js";
2
6
 
3
7
  // src/cli.ts
4
8
  import { Command } from "commander";
5
9
  import chalk from "chalk";
6
10
  import open from "open";
7
11
  var program = new Command();
8
- program.name("discoverylab").description("AI-powered app testing & evidence generator - Claude Code Plugin").version("0.1.0");
12
+ program.name("discoverylab").description("AI-powered app testing & evidence generator - Claude Code Plugin").version(APP_VERSION);
9
13
  program.command("serve").description("Start the DiscoveryLab web UI server").option("-p, --port <number>", "Port to listen on", "3847").option("-o, --open", "Open browser automatically", false).action(async (options) => {
10
14
  const port = parseInt(options.port, 10);
11
15
  console.log(chalk.cyan("\n DiscoveryLab"));
12
16
  console.log(chalk.gray(" AI-powered app testing & evidence generator\n"));
13
17
  try {
14
- const { startServer } = await import("./server-JG7UKFGK.js");
18
+ const { startServer } = await import("./server-HON66OES.js");
15
19
  await startServer(port);
16
20
  console.log(chalk.green(` Server running at http://localhost:${port}`));
17
21
  console.log(chalk.gray(" Press Ctrl+C to stop\n"));
@@ -26,7 +30,7 @@ program.command("serve").description("Start the DiscoveryLab web UI server").opt
26
30
  program.command("setup").description("Check and configure DiscoveryLab dependencies").action(async () => {
27
31
  console.log(chalk.cyan("\n DiscoveryLab Setup\n"));
28
32
  try {
29
- const { setupStatusTool } = await import("./setup-AQX4JQVR.js");
33
+ const { setupStatusTool } = await import("./setup-B5YPNUE4.js");
30
34
  const result = await setupStatusTool.handler({});
31
35
  if (result.isError) {
32
36
  console.error(chalk.red(" Setup check failed"));
@@ -110,8 +114,8 @@ program.command("mcp").description("Run as MCP server (for Claude Code integrati
110
114
  try {
111
115
  const { getDatabase } = await import("./db-ADBEBNH6.js");
112
116
  getDatabase();
113
- const { mcpServer } = await import("./server-3FBHBA7L.js");
114
- const { uiTools, projectTools, setupTools, captureTools, analyzeTools, canvasTools, exportTools, testingTools, integrationTools } = await import("./tools-N5N2IO7V.js");
117
+ const { mcpServer } = await import("./server-6N3KIEGP.js");
118
+ const { uiTools, projectTools, setupTools, captureTools, analyzeTools, canvasTools, exportTools, testingTools, integrationTools } = await import("./tools-YS4QHOTQ.js");
115
119
  mcpServer.registerTools([
116
120
  ...uiTools,
117
121
  ...projectTools,
@@ -130,7 +134,9 @@ program.command("mcp").description("Run as MCP server (for Claude Code integrati
130
134
  }
131
135
  });
132
136
  program.command("info").description("Show version and configuration info").action(async () => {
133
- console.log(chalk.cyan("\n DiscoveryLab v0.1.0\n"));
137
+ console.log(chalk.cyan(`
138
+ DiscoveryLab v${APP_VERSION}
139
+ `));
134
140
  console.log(chalk.gray(" AI-powered app testing & evidence generator"));
135
141
  console.log(chalk.gray(" Claude Code Plugin\n"));
136
142
  try {
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  startServer,
4
4
  stopServer
5
- } from "./chunk-24VARQVO.js";
5
+ } from "./chunk-XZZKFF5V.js";
6
6
  import {
7
7
  analyzeTools,
8
8
  canvasTools,
@@ -13,13 +13,13 @@ import {
13
13
  taskHubTools,
14
14
  testingTools,
15
15
  uiTools
16
- } from "./chunk-5F76VWME.js";
17
- import "./chunk-TAODYZ52.js";
16
+ } from "./chunk-E3N3P2AG.js";
17
+ import "./chunk-YEZ26ENO.js";
18
18
  import "./chunk-43U6UYV7.js";
19
19
  import "./chunk-W3WJGYR6.js";
20
20
  import {
21
21
  setupTools
22
- } from "./chunk-4KLG6DDE.js";
22
+ } from "./chunk-G524UVBK.js";
23
23
  import {
24
24
  closeDatabase,
25
25
  exportDestinations,
@@ -33,7 +33,8 @@ import {
33
33
  } from "./chunk-TJ3H23LL.js";
34
34
  import {
35
35
  mcpServer
36
- } from "./chunk-QJXXHOV7.js";
36
+ } from "./chunk-XKX6NBHF.js";
37
+ import "./chunk-6EGBXRDK.js";
37
38
  import "./chunk-MLKGABMK.js";
38
39
 
39
40
  // src/core/protocol/types.ts
@@ -0,0 +1,16 @@
1
+ import {
2
+ MCPServer,
3
+ createErrorResult,
4
+ createJsonResult,
5
+ createTextResult,
6
+ mcpServer
7
+ } from "./chunk-XKX6NBHF.js";
8
+ import "./chunk-6EGBXRDK.js";
9
+ import "./chunk-MLKGABMK.js";
10
+ export {
11
+ MCPServer,
12
+ createErrorResult,
13
+ createJsonResult,
14
+ createTextResult,
15
+ mcpServer
16
+ };
@@ -0,0 +1,14 @@
1
+ import {
2
+ app,
3
+ startServer,
4
+ stopServer
5
+ } from "./chunk-ZJFWMSZF.js";
6
+ import "./chunk-TAODYZ52.js";
7
+ import "./chunk-43U6UYV7.js";
8
+ import "./chunk-TJ3H23LL.js";
9
+ import "./chunk-MLKGABMK.js";
10
+ export {
11
+ app,
12
+ startServer,
13
+ stopServer
14
+ };
@@ -0,0 +1,15 @@
1
+ import {
2
+ app,
3
+ startServer,
4
+ stopServer
5
+ } from "./chunk-XZZKFF5V.js";
6
+ import "./chunk-YEZ26ENO.js";
7
+ import "./chunk-43U6UYV7.js";
8
+ import "./chunk-TJ3H23LL.js";
9
+ import "./chunk-6EGBXRDK.js";
10
+ import "./chunk-MLKGABMK.js";
11
+ export {
12
+ app,
13
+ startServer,
14
+ stopServer
15
+ };
@@ -0,0 +1,14 @@
1
+ import {
2
+ app,
3
+ startServer,
4
+ stopServer
5
+ } from "./chunk-7HZEDTS7.js";
6
+ import "./chunk-YEZ26ENO.js";
7
+ import "./chunk-43U6UYV7.js";
8
+ import "./chunk-TJ3H23LL.js";
9
+ import "./chunk-MLKGABMK.js";
10
+ export {
11
+ app,
12
+ startServer,
13
+ stopServer
14
+ };
@@ -0,0 +1,18 @@
1
+ import {
2
+ setupCheckTool,
3
+ setupInitTool,
4
+ setupInstallTool,
5
+ setupStatusTool,
6
+ setupTools
7
+ } from "./chunk-G524UVBK.js";
8
+ import "./chunk-TJ3H23LL.js";
9
+ import "./chunk-XKX6NBHF.js";
10
+ import "./chunk-6EGBXRDK.js";
11
+ import "./chunk-MLKGABMK.js";
12
+ export {
13
+ setupCheckTool,
14
+ setupInitTool,
15
+ setupInstallTool,
16
+ setupStatusTool,
17
+ setupTools
18
+ };
@@ -0,0 +1,178 @@
1
+ import {
2
+ analyzeScreenshotTool,
3
+ analyzeTools,
4
+ analyzeVideoTool,
5
+ canvasCompareTool,
6
+ canvasCreateTool,
7
+ canvasDevicesTool,
8
+ canvasHtmlTool,
9
+ canvasPresetsTool,
10
+ canvasSvgTool,
11
+ canvasTools,
12
+ captureEmulatorTool,
13
+ captureScreenTool,
14
+ captureTools,
15
+ driveFolderTool,
16
+ driveLoginTool,
17
+ driveQuickExportTool,
18
+ driveStatusTool,
19
+ driveUploadTool,
20
+ exportBatchTool,
21
+ exportClipboardTool,
22
+ exportConcatTool,
23
+ exportGifTool,
24
+ exportImageTool,
25
+ exportInfoTool,
26
+ exportMockupsTool,
27
+ exportRevealTool,
28
+ exportSequenceTool,
29
+ exportThumbnailTool,
30
+ exportToTool,
31
+ exportTools,
32
+ exportTrimTool,
33
+ exportVideoTool,
34
+ extractFramesTool,
35
+ integrationTools,
36
+ jiraAttachTool,
37
+ jiraCommentTool,
38
+ jiraCreateTool,
39
+ jiraLoginTool,
40
+ jiraQuickExportTool,
41
+ jiraStatusTool,
42
+ listEmulatorsTool,
43
+ maestroGenerateTool,
44
+ maestroRunTool,
45
+ maestroStatusTool,
46
+ maestroStudioTool,
47
+ notionExportTool,
48
+ notionLoginTool,
49
+ notionQuickExportTool,
50
+ notionStatusTool,
51
+ playwrightCodegenTool,
52
+ playwrightDevicesTool,
53
+ playwrightGenerateTool,
54
+ playwrightInstallTool,
55
+ playwrightReportTool,
56
+ playwrightRunTool,
57
+ playwrightStatusTool,
58
+ projectCreateTool,
59
+ projectDeleteTool,
60
+ projectGetTool,
61
+ projectListTool,
62
+ projectSaveTool,
63
+ projectTools,
64
+ startRecordingTool,
65
+ stopRecordingTool,
66
+ taskHubGenerateTool,
67
+ taskHubLinksAddTool,
68
+ taskHubLinksListTool,
69
+ taskHubLinksRemoveTool,
70
+ taskHubMetadataFetchTool,
71
+ taskHubRequirementsGetTool,
72
+ taskHubTestMapGetTool,
73
+ taskHubTestMapToggleTool,
74
+ taskHubTools,
75
+ testDevicesTool,
76
+ testingTools,
77
+ uiOpenTool,
78
+ uiStatusTool,
79
+ uiTools,
80
+ videoInfoTool
81
+ } from "./chunk-7DOG2W4O.js";
82
+ import "./chunk-YEZ26ENO.js";
83
+ import "./chunk-43U6UYV7.js";
84
+ import "./chunk-W3WJGYR6.js";
85
+ import {
86
+ setupCheckTool,
87
+ setupInitTool,
88
+ setupStatusTool,
89
+ setupTools
90
+ } from "./chunk-4KLG6DDE.js";
91
+ import "./chunk-TJ3H23LL.js";
92
+ import "./chunk-QJXXHOV7.js";
93
+ import "./chunk-MLKGABMK.js";
94
+ export {
95
+ analyzeScreenshotTool,
96
+ analyzeTools,
97
+ analyzeVideoTool,
98
+ canvasCompareTool,
99
+ canvasCreateTool,
100
+ canvasDevicesTool,
101
+ canvasHtmlTool,
102
+ canvasPresetsTool,
103
+ canvasSvgTool,
104
+ canvasTools,
105
+ captureEmulatorTool,
106
+ captureScreenTool,
107
+ captureTools,
108
+ driveFolderTool,
109
+ driveLoginTool,
110
+ driveQuickExportTool,
111
+ driveStatusTool,
112
+ driveUploadTool,
113
+ exportBatchTool,
114
+ exportClipboardTool,
115
+ exportConcatTool,
116
+ exportGifTool,
117
+ exportImageTool,
118
+ exportInfoTool,
119
+ exportMockupsTool,
120
+ exportRevealTool,
121
+ exportSequenceTool,
122
+ exportThumbnailTool,
123
+ exportToTool,
124
+ exportTools,
125
+ exportTrimTool,
126
+ exportVideoTool,
127
+ extractFramesTool,
128
+ integrationTools,
129
+ jiraAttachTool,
130
+ jiraCommentTool,
131
+ jiraCreateTool,
132
+ jiraLoginTool,
133
+ jiraQuickExportTool,
134
+ jiraStatusTool,
135
+ listEmulatorsTool,
136
+ maestroGenerateTool,
137
+ maestroRunTool,
138
+ maestroStatusTool,
139
+ maestroStudioTool,
140
+ notionExportTool,
141
+ notionLoginTool,
142
+ notionQuickExportTool,
143
+ notionStatusTool,
144
+ playwrightCodegenTool,
145
+ playwrightDevicesTool,
146
+ playwrightGenerateTool,
147
+ playwrightInstallTool,
148
+ playwrightReportTool,
149
+ playwrightRunTool,
150
+ playwrightStatusTool,
151
+ projectCreateTool,
152
+ projectDeleteTool,
153
+ projectGetTool,
154
+ projectListTool,
155
+ projectSaveTool,
156
+ projectTools,
157
+ setupCheckTool,
158
+ setupInitTool,
159
+ setupStatusTool,
160
+ setupTools,
161
+ startRecordingTool,
162
+ stopRecordingTool,
163
+ taskHubGenerateTool,
164
+ taskHubLinksAddTool,
165
+ taskHubLinksListTool,
166
+ taskHubLinksRemoveTool,
167
+ taskHubMetadataFetchTool,
168
+ taskHubRequirementsGetTool,
169
+ taskHubTestMapGetTool,
170
+ taskHubTestMapToggleTool,
171
+ taskHubTools,
172
+ testDevicesTool,
173
+ testingTools,
174
+ uiOpenTool,
175
+ uiStatusTool,
176
+ uiTools,
177
+ videoInfoTool
178
+ };
@@ -0,0 +1,179 @@
1
+ import {
2
+ analyzeScreenshotTool,
3
+ analyzeTools,
4
+ analyzeVideoTool,
5
+ canvasCompareTool,
6
+ canvasCreateTool,
7
+ canvasDevicesTool,
8
+ canvasHtmlTool,
9
+ canvasPresetsTool,
10
+ canvasSvgTool,
11
+ canvasTools,
12
+ captureEmulatorTool,
13
+ captureScreenTool,
14
+ captureTools,
15
+ driveFolderTool,
16
+ driveLoginTool,
17
+ driveQuickExportTool,
18
+ driveStatusTool,
19
+ driveUploadTool,
20
+ exportBatchTool,
21
+ exportClipboardTool,
22
+ exportConcatTool,
23
+ exportGifTool,
24
+ exportImageTool,
25
+ exportInfoTool,
26
+ exportMockupsTool,
27
+ exportRevealTool,
28
+ exportSequenceTool,
29
+ exportThumbnailTool,
30
+ exportToTool,
31
+ exportTools,
32
+ exportTrimTool,
33
+ exportVideoTool,
34
+ extractFramesTool,
35
+ integrationTools,
36
+ jiraAttachTool,
37
+ jiraCommentTool,
38
+ jiraCreateTool,
39
+ jiraLoginTool,
40
+ jiraQuickExportTool,
41
+ jiraStatusTool,
42
+ listEmulatorsTool,
43
+ maestroGenerateTool,
44
+ maestroRunTool,
45
+ maestroStatusTool,
46
+ maestroStudioTool,
47
+ notionExportTool,
48
+ notionLoginTool,
49
+ notionQuickExportTool,
50
+ notionStatusTool,
51
+ playwrightCodegenTool,
52
+ playwrightDevicesTool,
53
+ playwrightGenerateTool,
54
+ playwrightInstallTool,
55
+ playwrightReportTool,
56
+ playwrightRunTool,
57
+ playwrightStatusTool,
58
+ projectCreateTool,
59
+ projectDeleteTool,
60
+ projectGetTool,
61
+ projectListTool,
62
+ projectSaveTool,
63
+ projectTools,
64
+ startRecordingTool,
65
+ stopRecordingTool,
66
+ taskHubGenerateTool,
67
+ taskHubLinksAddTool,
68
+ taskHubLinksListTool,
69
+ taskHubLinksRemoveTool,
70
+ taskHubMetadataFetchTool,
71
+ taskHubRequirementsGetTool,
72
+ taskHubTestMapGetTool,
73
+ taskHubTestMapToggleTool,
74
+ taskHubTools,
75
+ testDevicesTool,
76
+ testingTools,
77
+ uiOpenTool,
78
+ uiStatusTool,
79
+ uiTools,
80
+ videoInfoTool
81
+ } from "./chunk-E3N3P2AG.js";
82
+ import "./chunk-YEZ26ENO.js";
83
+ import "./chunk-43U6UYV7.js";
84
+ import "./chunk-W3WJGYR6.js";
85
+ import {
86
+ setupCheckTool,
87
+ setupInitTool,
88
+ setupStatusTool,
89
+ setupTools
90
+ } from "./chunk-G524UVBK.js";
91
+ import "./chunk-TJ3H23LL.js";
92
+ import "./chunk-XKX6NBHF.js";
93
+ import "./chunk-6EGBXRDK.js";
94
+ import "./chunk-MLKGABMK.js";
95
+ export {
96
+ analyzeScreenshotTool,
97
+ analyzeTools,
98
+ analyzeVideoTool,
99
+ canvasCompareTool,
100
+ canvasCreateTool,
101
+ canvasDevicesTool,
102
+ canvasHtmlTool,
103
+ canvasPresetsTool,
104
+ canvasSvgTool,
105
+ canvasTools,
106
+ captureEmulatorTool,
107
+ captureScreenTool,
108
+ captureTools,
109
+ driveFolderTool,
110
+ driveLoginTool,
111
+ driveQuickExportTool,
112
+ driveStatusTool,
113
+ driveUploadTool,
114
+ exportBatchTool,
115
+ exportClipboardTool,
116
+ exportConcatTool,
117
+ exportGifTool,
118
+ exportImageTool,
119
+ exportInfoTool,
120
+ exportMockupsTool,
121
+ exportRevealTool,
122
+ exportSequenceTool,
123
+ exportThumbnailTool,
124
+ exportToTool,
125
+ exportTools,
126
+ exportTrimTool,
127
+ exportVideoTool,
128
+ extractFramesTool,
129
+ integrationTools,
130
+ jiraAttachTool,
131
+ jiraCommentTool,
132
+ jiraCreateTool,
133
+ jiraLoginTool,
134
+ jiraQuickExportTool,
135
+ jiraStatusTool,
136
+ listEmulatorsTool,
137
+ maestroGenerateTool,
138
+ maestroRunTool,
139
+ maestroStatusTool,
140
+ maestroStudioTool,
141
+ notionExportTool,
142
+ notionLoginTool,
143
+ notionQuickExportTool,
144
+ notionStatusTool,
145
+ playwrightCodegenTool,
146
+ playwrightDevicesTool,
147
+ playwrightGenerateTool,
148
+ playwrightInstallTool,
149
+ playwrightReportTool,
150
+ playwrightRunTool,
151
+ playwrightStatusTool,
152
+ projectCreateTool,
153
+ projectDeleteTool,
154
+ projectGetTool,
155
+ projectListTool,
156
+ projectSaveTool,
157
+ projectTools,
158
+ setupCheckTool,
159
+ setupInitTool,
160
+ setupStatusTool,
161
+ setupTools,
162
+ startRecordingTool,
163
+ stopRecordingTool,
164
+ taskHubGenerateTool,
165
+ taskHubLinksAddTool,
166
+ taskHubLinksListTool,
167
+ taskHubLinksRemoveTool,
168
+ taskHubMetadataFetchTool,
169
+ taskHubRequirementsGetTool,
170
+ taskHubTestMapGetTool,
171
+ taskHubTestMapToggleTool,
172
+ taskHubTools,
173
+ testDevicesTool,
174
+ testingTools,
175
+ uiOpenTool,
176
+ uiStatusTool,
177
+ uiTools,
178
+ videoInfoTool
179
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veolab/discoverylab",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "AI-powered app testing & evidence generator - Claude Code Plugin",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",