@vgai/sdk 0.5.38 → 0.5.39
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@vgai/sdk",
|
|
3
3
|
"author": "Volter AI, Inc.",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "0.5.
|
|
5
|
+
"version": "0.5.39",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
34
|
-
"@vgai/engine": "0.5.
|
|
34
|
+
"@vgai/engine": "0.5.39",
|
|
35
35
|
"playwright": "^1.58.2",
|
|
36
36
|
"zod": "^4.3.6"
|
|
37
37
|
}
|
|
@@ -3,7 +3,8 @@ export type ToolContributionPoint =
|
|
|
3
3
|
| 'selection.inspector'
|
|
4
4
|
| 'asset.inspector'
|
|
5
5
|
| 'generation.result'
|
|
6
|
-
| 'workspace.utility'
|
|
6
|
+
| 'workspace.utility'
|
|
7
|
+
| 'workspace.analytics';
|
|
7
8
|
|
|
8
9
|
/**
|
|
9
10
|
* One contribution module, FOUND BY SCANNING — never listed anywhere.
|
|
@@ -11,7 +12,7 @@ export type ToolContributionPoint =
|
|
|
11
12
|
* Nothing enumerates these. `src/tools/` in project source and `src/` in every
|
|
12
13
|
* `vgai`-declaring dependency are walked for the naming convention
|
|
13
14
|
* (`*.document.tsx`, `*.inspector.tsx`, `*.asset-inspector.tsx`,
|
|
14
|
-
* `*.result.tsx`, `*.utility.tsx`), and the module itself declares everything
|
|
15
|
+
* `*.result.tsx`, `*.utility.tsx`, `*.analytics.tsx`), and the module itself declares everything
|
|
15
16
|
* else: `point`, `title` (or `presentations`), and the `tool` it drives, by
|
|
16
17
|
* name. Its id is derived from this path. A manifest cannot disagree with a
|
|
17
18
|
* module it does not mention.
|