uloop-cli 0.50.1 → 0.51.0
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.bundle.cjs +18 -8
- package/dist/cli.bundle.cjs.map +3 -3
- package/package.json +2 -2
- package/src/default-tools.json +13 -3
- package/src/skills/bundled-skills.ts +4 -4
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uloop-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
4
4
|
"//version": "x-release-please-version",
|
|
5
5
|
"description": "CLI tool for Unity Editor communication via uLoopMCP",
|
|
6
6
|
"main": "dist/cli.bundle.cjs",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@eslint/js": "9.39.2",
|
|
50
|
-
"tsx": "4.
|
|
50
|
+
"tsx": "4.21.0",
|
|
51
51
|
"@types/jest": "30.0.0",
|
|
52
52
|
"@types/node": "25.0.2",
|
|
53
53
|
"@types/semver": "^7.7.1",
|
package/src/default-tools.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.51.0",
|
|
3
3
|
"tools": [
|
|
4
4
|
{
|
|
5
5
|
"name": "compile",
|
|
@@ -274,8 +274,8 @@
|
|
|
274
274
|
}
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
|
-
"name": "capture-
|
|
278
|
-
"description": "Capture Unity EditorWindow and save as PNG
|
|
277
|
+
"name": "capture-window",
|
|
278
|
+
"description": "Capture Unity EditorWindow and save as PNG",
|
|
279
279
|
"inputSchema": {
|
|
280
280
|
"type": "object",
|
|
281
281
|
"properties": {
|
|
@@ -288,6 +288,16 @@
|
|
|
288
288
|
"type": "number",
|
|
289
289
|
"description": "Resolution scale (0.1 to 1.0)",
|
|
290
290
|
"default": 1
|
|
291
|
+
},
|
|
292
|
+
"MatchMode": {
|
|
293
|
+
"type": "string",
|
|
294
|
+
"description": "Window name matching mode (all case-insensitive)",
|
|
295
|
+
"enum": [
|
|
296
|
+
"exact",
|
|
297
|
+
"prefix",
|
|
298
|
+
"contains"
|
|
299
|
+
],
|
|
300
|
+
"default": "exact"
|
|
291
301
|
}
|
|
292
302
|
}
|
|
293
303
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* To exclude a skill from bundling, add `internal: true` to its frontmatter.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import
|
|
13
|
+
import captureWindowSkill from '../../../Editor/Api/McpTools/CaptureWindow/SKILL.md';
|
|
14
14
|
import clearConsoleSkill from '../../../Editor/Api/McpTools/ClearConsole/SKILL.md';
|
|
15
15
|
import compileSkill from '../../../Editor/Api/McpTools/Compile/SKILL.md';
|
|
16
16
|
import controlPlayModeSkill from '../../../Editor/Api/McpTools/ControlPlayMode/SKILL.md';
|
|
@@ -33,9 +33,9 @@ export interface BundledSkill {
|
|
|
33
33
|
|
|
34
34
|
export const BUNDLED_SKILLS: BundledSkill[] = [
|
|
35
35
|
{
|
|
36
|
-
name: 'uloop-capture-
|
|
37
|
-
dirName: 'uloop-capture-
|
|
38
|
-
content:
|
|
36
|
+
name: 'uloop-capture-window',
|
|
37
|
+
dirName: 'uloop-capture-window',
|
|
38
|
+
content: captureWindowSkill,
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
name: 'uloop-clear-console',
|
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* This file exists to avoid bundling the entire package.json into the CLI bundle.
|
|
5
5
|
* This version is automatically updated by release-please.
|
|
6
6
|
*/
|
|
7
|
-
export const VERSION = '0.
|
|
7
|
+
export const VERSION = '0.51.0'; // x-release-please-version
|