dominus-cli 2.1.0 → 2.1.1
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/CHANGELOG.md +24 -4
- package/README.md +12 -14
- package/dist/install-plugin.js +58 -13
- package/dist/install-plugin.js.map +1 -1
- package/dist/mcp.js +13 -121
- package/dist/mcp.js.map +1 -1
- package/docs/DOMINUS_2_PLAN.md +4 -4
- package/package.json +5 -3
- package/plugin/Dominus.rbxmx +3674 -0
- package/plugin/src/BridgeConfig.lua +2 -0
- package/plugin/src/ValueCodec.lua +5 -4
- package/plugin/src/WsClient.lua +13 -0
- package/plugin/src/init.server.lua +35 -22
- package/plugin/Dominus.rbxm +0 -0
package/docs/DOMINUS_2_PLAN.md
CHANGED
|
@@ -30,8 +30,8 @@ Official references:
|
|
|
30
30
|
|
|
31
31
|
1. MCP host starts `dominus-mcp` over stdio.
|
|
32
32
|
2. Dominus owns or securely relays to one loopback WebSocket bridge on port 18088.
|
|
33
|
-
3. The
|
|
34
|
-
|
|
33
|
+
3. The installer embeds a persistent random bridge token into that user's local
|
|
34
|
+
Studio plugin, allowing automatic authentication without a manual pairing flow.
|
|
35
35
|
4. Every Studio window receives a unique connection ID. MCP callers select that
|
|
36
36
|
ID, so two windows editing the same place cannot overwrite each other's target.
|
|
37
37
|
5. Studio instances are returned as session-scoped instance references with path
|
|
@@ -43,7 +43,7 @@ Official references:
|
|
|
43
43
|
|
|
44
44
|
## MCP tool surface
|
|
45
45
|
|
|
46
|
-
- `dominus_status`, `
|
|
46
|
+
- `dominus_status`, `dominus_select_studio`
|
|
47
47
|
- `studio_get_tree`, `studio_inspect`, `studio_get_selection`
|
|
48
48
|
- `studio_read_script`, `studio_update_script`
|
|
49
49
|
- `studio_apply`, `studio_delete_instances`
|
|
@@ -67,7 +67,7 @@ inside the MCP server.
|
|
|
67
67
|
|
|
68
68
|
## Verification
|
|
69
69
|
|
|
70
|
-
- Transport tests cover authentication,
|
|
70
|
+
- Transport tests cover authentication, credential rejection, wrong-target responses,
|
|
71
71
|
disconnect isolation, duplicate place sessions, and payload rejection.
|
|
72
72
|
- Protocol and MCP tests cover schema validation and structured result shapes.
|
|
73
73
|
- Static plugin checks plus `rojo build` verify the packaged plugin model.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dominus-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Dominus 2: a secure, MCP-native Roblox Studio engineering agent bridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dev": "tsx src/mcp/index.ts",
|
|
13
13
|
"dev:mcp": "tsx src/mcp/index.ts",
|
|
14
14
|
"build": "tsup",
|
|
15
|
-
"build:plugin": "rojo build plugin/default.project.json -o plugin/Dominus.
|
|
15
|
+
"build:plugin": "rojo build plugin/default.project.json -o plugin/Dominus.rbxmx",
|
|
16
16
|
"start": "node dist/mcp.js",
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"test:watch": "vitest",
|
|
@@ -55,7 +55,9 @@
|
|
|
55
55
|
},
|
|
56
56
|
"files": [
|
|
57
57
|
"dist",
|
|
58
|
-
"plugin",
|
|
58
|
+
"plugin/default.project.json",
|
|
59
|
+
"plugin/Dominus.rbxmx",
|
|
60
|
+
"plugin/src",
|
|
59
61
|
"CHANGELOG.md",
|
|
60
62
|
"docs/DOMINUS_2_PLAN.md"
|
|
61
63
|
],
|