DeepSeek Harness plugin

dsh-roblox-studio

DeepSeek Harness-native Roblox Studio MCP companion: Settings UI listing connected Studio instances, active-instance selection exposed to the agent as runtime context, plus live visibility into

Jump to install

Source facts

Repository
bxsexc/dsh-roblox-studio
Latest update
Aug 15, 2026
Category
Workflow & Automation
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/bxsexc/dsh-roblox-studio
Plugin: dsh-roblox-studio
Author: bxsexc

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-roblox-studio

DeepSeek Harness 原生插件:为 mcp-roblox-studio@deepseek-ai/dsh-mcp-client 桥接的 Roblox Studio MCP)补充一个人机界面。

功能

  • Settings → Roblox Studio 设置分区:

- 实时列出当前通过 Roblox Studio MCP 连接的 Studio 实例(list_roblox_studios,独立 MCP stdio 连接,不影响 Agent 的工具连接) - 一键激活某个实例、取消激活 - 显示 MCP 桥状态、实例掉线(stale)标记

  • 激活选择通过 ctx.systemPrompt.context 注入 Agent 运行时上下文:Agent 会被明确告知在所有 mcp__roblox__* 工具调用中使用该 studio_id,其他已连接实例不会被误操作;选择失效时会收到告警。
  • 选择持久化在 Settings 提供方(roblox-studio 命名空间,通常为 ~/.dsh/settings.yaml)。

> 关于脚本同步:磁盘 ↔ Studio 的实时双向脚本同步请使用 Roblox Studio 官方 Script Sync(资源管理器中右键服务或文件夹 → “Sync to…” 选择本地目录,重开工程自动恢复)。它没有 MCP 编程接口,无法由插件代为启动,因此本插件不重复实现单向快照式同步,而是围绕它做增值:

  • 官方同步状态面板:设置页通过 InstanceFileSyncService(MCP execute_luau 可达)实时显示激活实例上处于官方同步的服务/文件夹(同步根)、出错树与查询失败原因,45s 缓存 + 定时/事件刷新。
  • Agent 文件优先引导:设置「本地同步目录」后,当激活实例存在同步根时,运行时上下文会告知 Agent——同步范围内的脚本优先直接编辑本地 Rojo 风格文件(*.server/.client/.local/.legacy.luau文件夹/init.*.luau),磁盘变更由官方同步实时回写 Studio,比走 MCP 写入更快也更不易冲突。

安装

git clone https://gitee.com/nidiehhh/dsh-roblox-studio.git
dsh plugin --profile web add /path/to/dsh-roblox-studio

安装后重启 Web profile(宿主在进程启动时发现浏览器 bundle)。打开 GUI → 设置 → Roblox Studio

深浅主题

界面全部走 DSH 设计系统 alias(--dsw-alias-*),跟随 body[data-ds-dark-theme] 自动切换深/浅色。

配置(Settings / profile patch)

字段默认说明
serverNameroblox对应 mcp-client 条目的 serverName,用于工具名提示
launcherCommand自动探测StudioMCP 启动命令;空 = ~/.dsh/roblox-studio-mcp.cmd → 最新 StudioMCP.exe
activeStudioId / activeStudioLabel由设置界面维护
refreshTimeoutMs20000每次 MCP 请求超时
scriptSyncRoot官方 Script Sync 的本地目录;设置后 Agent 会优先直接编辑同步范围内的本地文件

路线

  • /_dsh/roblox-studio/settings:GET 快照(含 scriptSync 官方同步状态视图);POST {action:'refresh'} / {action:'activate', studioId, expectedRevision} / {action:'clear', expectedRevision} / {action:'saveScriptSyncRoot', scriptSyncRoot, expectedRevision}(同源校验)。