@weppy/roblox-mcp 0.1.10 → 1.0.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/.claude-plugin/marketplace.json +2 -2
- package/CHANGELOG.md +52 -10
- package/README.md +6 -0
- package/docs/en/installation/ai-apps/gemini-cli.md +24 -31
- package/docs/en/installation/roblox-plugin.md +10 -5
- package/docs/en/pro-upgrade.md +36 -30
- package/docs/en/tools/overview.md +255 -95
- package/docs/es/README.md +6 -0
- package/docs/es/installation/README.md +6 -5
- package/docs/es/installation/ai-apps/gemini-cli.md +51 -58
- package/docs/es/installation/roblox-plugin.md +29 -24
- package/docs/es/pro-upgrade.md +39 -33
- package/docs/es/tools/overview.md +4 -0
- package/docs/id/README.md +6 -0
- package/docs/id/installation/ai-apps/gemini-cli.md +42 -49
- package/docs/id/installation/roblox-plugin.md +28 -23
- package/docs/id/pro-upgrade.md +36 -30
- package/docs/id/tools/overview.md +4 -0
- package/docs/ja/README.md +6 -0
- package/docs/ja/installation/README.md +5 -5
- package/docs/ja/installation/ai-apps/gemini-cli.md +39 -46
- package/docs/ja/installation/roblox-plugin.md +32 -27
- package/docs/ja/pro-upgrade.md +38 -32
- package/docs/ja/tools/overview.md +4 -0
- package/docs/ko/README.md +6 -0
- package/docs/ko/installation/ai-apps/gemini-cli.md +24 -31
- package/docs/ko/installation/roblox-plugin.md +10 -5
- package/docs/ko/pro-upgrade.md +36 -30
- package/docs/ko/tools/overview.md +255 -95
- package/docs/pt-br/README.md +6 -0
- package/docs/pt-br/installation/ai-apps/gemini-cli.md +47 -54
- package/docs/pt-br/installation/roblox-plugin.md +28 -23
- package/docs/pt-br/pro-upgrade.md +39 -33
- package/docs/pt-br/tools/overview.md +4 -0
- package/package.json +4 -2
- package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +1 -1
- package/plugins/weppy-roblox-mcp/dist/index.js +70 -98
- package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/SKILL.md +0 -155
- package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/animations.json +0 -34
- package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/references/mcp-tools.md +0 -220
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/SKILL.md +0 -492
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/post-verify.sh +0 -162
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/pre-check.sh +0 -307
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/update-metadata.sh +0 -27
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: roblox-game-dev
|
|
3
|
-
description: Master orchestrator for Roblox game development. Use when creating games, adding features, or developing with Roblox Studio.
|
|
4
|
-
argument-hint: "[game description or feature request]"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Roblox Game Development
|
|
8
|
-
|
|
9
|
-
Master orchestrator for Roblox game development using weppy-roblox-mcp.
|
|
10
|
-
|
|
11
|
-
## Workflow
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
USER REQUEST
|
|
15
|
-
│
|
|
16
|
-
▼
|
|
17
|
-
┌─────────────────┐
|
|
18
|
-
│ 1. SYNC │ ← Use roblox-sync skill
|
|
19
|
-
└────────┬────────┘
|
|
20
|
-
│
|
|
21
|
-
▼
|
|
22
|
-
┌─────────────────┐
|
|
23
|
-
│ 2. PLAN │ ← Analyze request, create plan
|
|
24
|
-
└────────┬────────┘
|
|
25
|
-
│
|
|
26
|
-
▼
|
|
27
|
-
┌─────────────────┐
|
|
28
|
-
│ 3. APPROVAL │ ← User approves plan
|
|
29
|
-
└────────┬────────┘
|
|
30
|
-
│
|
|
31
|
-
▼
|
|
32
|
-
┌─────────────────┐
|
|
33
|
-
│ 4. DEVELOP │ ← Execute with MCP tools
|
|
34
|
-
└────────┬────────┘
|
|
35
|
-
│
|
|
36
|
-
┌────┴────┐
|
|
37
|
-
│ SYNC │ ← Re-sync after major changes (repeat as needed)
|
|
38
|
-
└────┬────┘
|
|
39
|
-
│
|
|
40
|
-
▼
|
|
41
|
-
┌─────────────────┐
|
|
42
|
-
│ 5. COMPLETE │ ← Final sync + Summary
|
|
43
|
-
└─────────────────┘
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
**IMPORTANT:** Run `roblox-sync` between development steps to keep local cache updated.
|
|
47
|
-
|
|
48
|
-
---
|
|
49
|
-
|
|
50
|
-
## Phase 1: SYNC
|
|
51
|
-
|
|
52
|
-
**Refer to:** `roblox-sync` skill
|
|
53
|
-
|
|
54
|
-
The sync skill handles:
|
|
55
|
-
- Connection check
|
|
56
|
-
- MCP tool loading
|
|
57
|
-
- Studio state synchronization
|
|
58
|
-
- Cache verification
|
|
59
|
-
|
|
60
|
-
**Wait for sync completion before proceeding.**
|
|
61
|
-
|
|
62
|
-
---
|
|
63
|
-
|
|
64
|
-
## Phase 2: PLAN
|
|
65
|
-
|
|
66
|
-
Analyze the user request and create a development plan:
|
|
67
|
-
|
|
68
|
-
1. **Understand requirements** - What does the user want?
|
|
69
|
-
2. **Check current state** - Read synced cache in `roblox-studio-sync/explorer/`
|
|
70
|
-
3. **Create task breakdown** - List specific tasks
|
|
71
|
-
4. **Identify assets needed** - Search using MCP tools
|
|
72
|
-
|
|
73
|
-
---
|
|
74
|
-
|
|
75
|
-
## Phase 3: APPROVAL
|
|
76
|
-
|
|
77
|
-
Present plan summary and get user approval before development.
|
|
78
|
-
|
|
79
|
-
---
|
|
80
|
-
|
|
81
|
-
## Phase 4: DEVELOP
|
|
82
|
-
|
|
83
|
-
> **CRITICAL:** Run `roblox-sync` after every major change to keep local cache in sync with Studio state.
|
|
84
|
-
|
|
85
|
-
### MCP Tools
|
|
86
|
-
|
|
87
|
-
Use `weppy-roblox-mcp` tools for all development tasks.
|
|
88
|
-
|
|
89
|
-
**Tool reference:** `references/mcp-tools.md`
|
|
90
|
-
|
|
91
|
-
For detailed parameters, check MCP tool definitions directly.
|
|
92
|
-
|
|
93
|
-
### Asset Search
|
|
94
|
-
|
|
95
|
-
**Primary method:** Use MCP `search_creator_store` tool directly for diversity.
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
search_creator_store({ query: "zombie R15 animated", assetType: "Model" })
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
**Secondary method:** If no suitable results or need verified assets, check `roblox-recommended-assets` skill.
|
|
102
|
-
|
|
103
|
-
### R15 Character Assets
|
|
104
|
-
|
|
105
|
-
When using R15 characters, apply animations from `references/animations.json`:
|
|
106
|
-
|
|
107
|
-
| Category | Animations |
|
|
108
|
-
|----------|------------|
|
|
109
|
-
| movement | idle, walk, run, jump, fall, climb, swim, swimIdle |
|
|
110
|
-
| combat | punch, slash, lunge, toolNone |
|
|
111
|
-
| emotes | wave, laugh, cheer, point, dance, dance2, dance3 |
|
|
112
|
-
| states | sit, death, gettingUp |
|
|
113
|
-
|
|
114
|
-
### Camera Focus
|
|
115
|
-
|
|
116
|
-
Always use `focus_camera_position` after creating/inserting objects:
|
|
117
|
-
- Set `respectAutoFocusSetting: true`
|
|
118
|
-
- Use appropriate distance and offset for object size
|
|
119
|
-
|
|
120
|
-
### Continuous Sync
|
|
121
|
-
|
|
122
|
-
Use `roblox-sync` skill to keep local cache updated during development:
|
|
123
|
-
|
|
124
|
-
| Timing | Action |
|
|
125
|
-
|--------|--------|
|
|
126
|
-
| After major changes | Re-sync affected services |
|
|
127
|
-
| After creating structures | Sync to verify hierarchy |
|
|
128
|
-
| Before next task | Ensure cache reflects current state |
|
|
129
|
-
|
|
130
|
-
This ensures accurate state awareness throughout development.
|
|
131
|
-
|
|
132
|
-
---
|
|
133
|
-
|
|
134
|
-
## Phase 5: COMPLETE
|
|
135
|
-
|
|
136
|
-
Provide summary:
|
|
137
|
-
- What was created
|
|
138
|
-
- What was modified
|
|
139
|
-
- Next steps for user
|
|
140
|
-
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
## Related Skills
|
|
144
|
-
|
|
145
|
-
| Skill | Purpose |
|
|
146
|
-
|-------|---------|
|
|
147
|
-
| `roblox-sync` | Studio synchronization |
|
|
148
|
-
| `roblox-recommended-assets` | Verified asset registry (use sparingly) |
|
|
149
|
-
|
|
150
|
-
---
|
|
151
|
-
|
|
152
|
-
## References
|
|
153
|
-
|
|
154
|
-
- `references/mcp-tools.md` - MCP tool list
|
|
155
|
-
- `references/animations.json` - R15 animation IDs
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"r15": {
|
|
3
|
-
"movement": {
|
|
4
|
-
"idle": "rbxassetid://507766666",
|
|
5
|
-
"walk": "rbxassetid://507777826",
|
|
6
|
-
"run": "rbxassetid://507767714",
|
|
7
|
-
"jump": "rbxassetid://507765000",
|
|
8
|
-
"fall": "rbxassetid://507767968",
|
|
9
|
-
"climb": "rbxassetid://507765644",
|
|
10
|
-
"swimIdle": "rbxassetid://507784897",
|
|
11
|
-
"swim": "rbxassetid://507785072"
|
|
12
|
-
},
|
|
13
|
-
"combat": {
|
|
14
|
-
"punch": "rbxassetid://507770818",
|
|
15
|
-
"slash": "rbxassetid://522635514",
|
|
16
|
-
"lunge": "rbxassetid://522638767",
|
|
17
|
-
"toolNone": "rbxassetid://507768375"
|
|
18
|
-
},
|
|
19
|
-
"emotes": {
|
|
20
|
-
"wave": "rbxassetid://507770239",
|
|
21
|
-
"laugh": "rbxassetid://507770818",
|
|
22
|
-
"cheer": "rbxassetid://507770677",
|
|
23
|
-
"point": "rbxassetid://507770453",
|
|
24
|
-
"dance": "rbxassetid://507771019",
|
|
25
|
-
"dance2": "rbxassetid://507776043",
|
|
26
|
-
"dance3": "rbxassetid://507777268"
|
|
27
|
-
},
|
|
28
|
-
"states": {
|
|
29
|
-
"sit": "rbxassetid://507768133",
|
|
30
|
-
"death": "rbxassetid://507772104",
|
|
31
|
-
"gettingUp": "rbxassetid://507768335"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
# weppy-roblox-mcp Tools
|
|
2
|
-
|
|
3
|
-
For detailed parameters, check MCP tool definitions directly.
|
|
4
|
-
|
|
5
|
-
## Instance
|
|
6
|
-
|
|
7
|
-
| Tool | Description |
|
|
8
|
-
|------|-------------|
|
|
9
|
-
| `create_instance` | Create a new instance |
|
|
10
|
-
| `create_instance_with_properties` | Create instance with properties |
|
|
11
|
-
| `clone_instance` | Clone an existing instance |
|
|
12
|
-
| `delete_instance` | Delete an instance |
|
|
13
|
-
| `move_instance` | Move instance to new parent |
|
|
14
|
-
| `rename_instance` | Rename an instance |
|
|
15
|
-
| `get_instance` | Get instance information |
|
|
16
|
-
| `get_instance_children` | Get instance children |
|
|
17
|
-
| `find_first_child` | Find first child by name |
|
|
18
|
-
| `find_first_descendant` | Find first descendant by name |
|
|
19
|
-
| `get_class_info` | Get class information |
|
|
20
|
-
| `wait_for_child` | Wait for child to exist |
|
|
21
|
-
| `pivot_to` | Set pivot CFrame |
|
|
22
|
-
|
|
23
|
-
## Property
|
|
24
|
-
|
|
25
|
-
| Tool | Description |
|
|
26
|
-
|------|-------------|
|
|
27
|
-
| `get_property` | Get a property value |
|
|
28
|
-
| `set_property` | Set a property value |
|
|
29
|
-
| `get_all_properties` | Get all properties |
|
|
30
|
-
| `set_multiple_properties` | Set multiple properties |
|
|
31
|
-
| `set_calculated_property` | Set calculated property |
|
|
32
|
-
| `set_relative_property` | Set relative property |
|
|
33
|
-
| `get_attribute` | Get attribute value |
|
|
34
|
-
| `set_attribute` | Set attribute value |
|
|
35
|
-
| `get_all_attributes` | Get all attributes |
|
|
36
|
-
| `delete_attribute` | Delete attribute |
|
|
37
|
-
|
|
38
|
-
## Script
|
|
39
|
-
|
|
40
|
-
| Tool | Description |
|
|
41
|
-
|------|-------------|
|
|
42
|
-
| `create_script` | Create a new script |
|
|
43
|
-
| `get_script_source` | Get script source code |
|
|
44
|
-
| `set_script_source` | Update script source code |
|
|
45
|
-
| `delete_script` | Delete script |
|
|
46
|
-
| `edit_script_lines` | Edit specific lines |
|
|
47
|
-
| `insert_script_lines` | Insert lines |
|
|
48
|
-
| `delete_script_lines` | Delete lines |
|
|
49
|
-
| `search_in_scripts` | Search in scripts |
|
|
50
|
-
| `replace_in_scripts` | Replace in scripts |
|
|
51
|
-
| `get_script_dependencies` | Get dependencies |
|
|
52
|
-
| `execute_script` | Execute script |
|
|
53
|
-
|
|
54
|
-
## Selection (Basic)
|
|
55
|
-
|
|
56
|
-
| Tool | Description |
|
|
57
|
-
|------|-------------|
|
|
58
|
-
| `get_selection` | Get currently selected instances |
|
|
59
|
-
| `set_selection` | Set selection to instances |
|
|
60
|
-
| `clear_selection` | Clear selection |
|
|
61
|
-
|
|
62
|
-
## Selection (Pro)
|
|
63
|
-
|
|
64
|
-
| Tool | Description |
|
|
65
|
-
|------|-------------|
|
|
66
|
-
| `get_selection_context` | Get selection with context |
|
|
67
|
-
| `get_selection_details` | Get detailed selection info |
|
|
68
|
-
| `add_to_selection` | Add to selection |
|
|
69
|
-
| `remove_from_selection` | Remove from selection |
|
|
70
|
-
| `watch_selection` | Watch selection changes |
|
|
71
|
-
| `get_place_info` | Get place information |
|
|
72
|
-
| `get_services` | Get game services |
|
|
73
|
-
| `get_studio_settings` | Get Studio settings |
|
|
74
|
-
| `run_command` | Run Studio command |
|
|
75
|
-
| `get_cached_selection` | Get cached selection state |
|
|
76
|
-
|
|
77
|
-
## Search
|
|
78
|
-
|
|
79
|
-
| Tool | Description |
|
|
80
|
-
|------|-------------|
|
|
81
|
-
| `get_file_tree` | Get file tree |
|
|
82
|
-
| `search_by_name` | Search instances by name |
|
|
83
|
-
| `search_by_class` | Search instances by class |
|
|
84
|
-
| `get_project_structure` | Get project structure tree |
|
|
85
|
-
| `search_by_property` | Search by property |
|
|
86
|
-
| `search_by_tag` | Search by tag |
|
|
87
|
-
| `get_descendants` | Get all descendants |
|
|
88
|
-
| `get_ancestors` | Get ancestors |
|
|
89
|
-
|
|
90
|
-
## Spatial
|
|
91
|
-
|
|
92
|
-
| Tool | Description |
|
|
93
|
-
|------|-------------|
|
|
94
|
-
| `get_spatial_map` | Get spatial map of area |
|
|
95
|
-
| `find_empty_space` | Find empty space in area |
|
|
96
|
-
| `get_bounds` | Get bounding box of instance |
|
|
97
|
-
| `snap_to_grid` | Snap position to grid |
|
|
98
|
-
| `check_collision` | Check collision between instances |
|
|
99
|
-
|
|
100
|
-
## Raycast
|
|
101
|
-
|
|
102
|
-
| Tool | Description |
|
|
103
|
-
|------|-------------|
|
|
104
|
-
| `raycast` | Cast a ray and get hit info |
|
|
105
|
-
| `find_ground` | Find ground position at point |
|
|
106
|
-
| `check_placement` | Check if object can be placed |
|
|
107
|
-
| `multi_raycast` | Perform multiple raycasts |
|
|
108
|
-
| `scan_area` | Scan area and generate heightmap |
|
|
109
|
-
| `find_flat_areas` | Find flat areas for placement |
|
|
110
|
-
| `find_spawn_positions` | Find valid spawn positions |
|
|
111
|
-
| `analyze_walkable_area` | Analyze walkable area |
|
|
112
|
-
|
|
113
|
-
## Bulk
|
|
114
|
-
|
|
115
|
-
| Tool | Description |
|
|
116
|
-
|------|-------------|
|
|
117
|
-
| `mass_create_instances` | Mass create instances |
|
|
118
|
-
| `mass_delete_instances` | Mass delete instances |
|
|
119
|
-
| `mass_set_property` | Mass set property |
|
|
120
|
-
| `mass_get_property` | Mass get property |
|
|
121
|
-
| `mass_duplicate` | Mass duplicate instances |
|
|
122
|
-
| `smart_duplicate` | Smart duplicate with offsets |
|
|
123
|
-
| `batch_execute` | Execute multiple commands |
|
|
124
|
-
| `modify_children` | Modify all children |
|
|
125
|
-
|
|
126
|
-
## Tag
|
|
127
|
-
|
|
128
|
-
| Tool | Description |
|
|
129
|
-
|------|-------------|
|
|
130
|
-
| `add_tag` | Add tag to instance |
|
|
131
|
-
| `remove_tag` | Remove tag from instance |
|
|
132
|
-
| `get_tags` | Get tags of instance |
|
|
133
|
-
| `get_tagged` | Get instances with tag |
|
|
134
|
-
| `has_tag` | Check if instance has tag |
|
|
135
|
-
|
|
136
|
-
## Asset
|
|
137
|
-
|
|
138
|
-
| Tool | Description |
|
|
139
|
-
|------|-------------|
|
|
140
|
-
| `insert_model` | Insert model from Creator Store |
|
|
141
|
-
| `get_asset_info` | Get asset information |
|
|
142
|
-
| `search_creator_store` | Search Creator Store assets |
|
|
143
|
-
| `search_and_insert_model` | Search and insert model |
|
|
144
|
-
| `insert_free_model` | Insert free model |
|
|
145
|
-
| `insert_package` | Insert package |
|
|
146
|
-
| `export_selection` | Export selection |
|
|
147
|
-
|
|
148
|
-
## State
|
|
149
|
-
|
|
150
|
-
| Tool | Description |
|
|
151
|
-
|------|-------------|
|
|
152
|
-
| `sync_workspace_state` | Sync workspace state |
|
|
153
|
-
| `get_workspace_snapshot` | Get workspace snapshot |
|
|
154
|
-
| `get_recent_changes` | Get recent changes |
|
|
155
|
-
| `get_viewport_info` | Get viewport state info |
|
|
156
|
-
|
|
157
|
-
## Environment
|
|
158
|
-
|
|
159
|
-
| Tool | Description |
|
|
160
|
-
|------|-------------|
|
|
161
|
-
| `set_lighting` | Set lighting properties |
|
|
162
|
-
| `set_atmosphere` | Set atmosphere properties |
|
|
163
|
-
| `set_sky` | Set sky properties |
|
|
164
|
-
| `set_terrain` | Set terrain properties |
|
|
165
|
-
| `set_time_of_day` | Set time of day |
|
|
166
|
-
|
|
167
|
-
## Terrain
|
|
168
|
-
|
|
169
|
-
| Tool | Description |
|
|
170
|
-
|------|-------------|
|
|
171
|
-
| `terrain_fill_block` | Fill terrain block |
|
|
172
|
-
| `terrain_fill_ball` | Fill terrain sphere |
|
|
173
|
-
| `terrain_fill_cylinder` | Fill terrain cylinder |
|
|
174
|
-
| `terrain_fill_wedge` | Fill terrain wedge |
|
|
175
|
-
| `terrain_clear` | Clear terrain (with region object) |
|
|
176
|
-
| `terrain_clear_region` | Clear terrain (with min/max) |
|
|
177
|
-
| `terrain_replace_material` | Replace terrain material |
|
|
178
|
-
| `terrain_get_material_color` | Get terrain material color |
|
|
179
|
-
| `terrain_set_material_color` | Set terrain material color |
|
|
180
|
-
| `terrain_read_voxel` | Read single terrain voxel |
|
|
181
|
-
| `terrain_read_voxels` | Read terrain voxel data |
|
|
182
|
-
| `terrain_write_voxels` | Write terrain voxel data |
|
|
183
|
-
| `terrain_generate` | Generate procedural terrain |
|
|
184
|
-
| `terrain_smooth` | Smooth terrain |
|
|
185
|
-
|
|
186
|
-
## Camera
|
|
187
|
-
|
|
188
|
-
| Tool | Description |
|
|
189
|
-
|------|-------------|
|
|
190
|
-
| `get_camera_info` | Get camera information |
|
|
191
|
-
| `get_suggested_camera_view` | Get suggested camera view |
|
|
192
|
-
| `focus_camera_path` | Focus camera on instance by path |
|
|
193
|
-
| `focus_camera_position` | Focus camera on world position |
|
|
194
|
-
|
|
195
|
-
## Visualization
|
|
196
|
-
|
|
197
|
-
| Tool | Description |
|
|
198
|
-
|------|-------------|
|
|
199
|
-
| `visualization_create_area` | Create area visualization |
|
|
200
|
-
| `visualization_create_marker` | Create marker with preview |
|
|
201
|
-
| `visualization_create_line` | Create line visualization |
|
|
202
|
-
| `visualization_remove` | Remove visualization |
|
|
203
|
-
| `visualization_clear` | Clear all visualizations |
|
|
204
|
-
| `visualization_get_status` | Get visualization status |
|
|
205
|
-
| `visualization_focus` | Focus camera on visualization |
|
|
206
|
-
|
|
207
|
-
## Log
|
|
208
|
-
|
|
209
|
-
| Tool | Description |
|
|
210
|
-
|------|-------------|
|
|
211
|
-
| `get_output_logs` | Get output logs |
|
|
212
|
-
| `clear_output_logs` | Clear output logs |
|
|
213
|
-
| `get_recent_errors` | Get recent errors |
|
|
214
|
-
|
|
215
|
-
## Connection
|
|
216
|
-
|
|
217
|
-
| Tool | Description |
|
|
218
|
-
|------|-------------|
|
|
219
|
-
| `get_connection_info` | Get connection status |
|
|
220
|
-
| `get_usage_status` | Get usage/quota status |
|