Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

roblox-studio-hubRoblox 工作室中心

Agent Skill

roblox-studio-hub 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

847

周安装

36

GitHub Stars

公开资料未说明

下载量

297
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:roblox-studio-hub(Roblox 工作室中心)
来源仓库:https://github.com/white-dragon-tools/roblox-studio-hub
仓库路径:skills/roblox-studio-hub
安装命令:
npx skills add https://github.com/white-dragon-tools/roblox-studio-hub --skill roblox-studio-hub
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/white-dragon-tools/roblox-studio-hub --skill roblox-studio-hub

简介

roblox-studio-hub 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前分类为前端设计,暂无更多功能说明。

SKILL.md

Roblox Studio Hub

A tool for managing multiple Roblox Studio instances and executing Lua code remotely via CLI and HTTP API.

Overview

Roblox Studio Hub provides:

  • Multi-Studio Management - Connect and manage multiple Roblox Studio instances simultaneously
  • Remote Code Execution - Execute Lua code in Studio with three modes (eval, run, play)
  • CLI Interface - Full-featured command line interface for all operations
  • System Service - Run as background service with auto-start on boot

Architecture

┌─────────────────┐     HTTP Long Polling     ┌─────────────────┐
│  Roblox Studio  │ ◄──────────────────────► │   Studio Hub    │
│    (Plugin)     │                           │    (Server)     │
└─────────────────┘                           └────────┬────────┘
                                                       │
                                              ┌────────▼────────┐
                                              │    CLI / API    │
                                              │  localhost:35888│
                                              └─────────────────┘

Quick Start

1. Install Hub Server

必须保证当前运行在 管理员 权限中, 否则提醒用户并中断本次会话.

# Configure GitHub npm registry
npm config set @white-dragon-tools:registry https://npm.pkg.github.com

# Install globally
npm install -g @white-dragon-tools/roblox-studio-hub

2. Register as System Service (Recommended)

# Register as system service (auto-start on boot)
# Windows: Run as Administrator
# Mac/Linux: Use sudo
roblox-studio-hub install

# Check service status
roblox-studio-hub status

3. Install Studio Plugin

roblox-studio-hub install-plugin

4. Verify Setup

roblox-studio-hub status

CLI Commands Reference

All commands support -h or --help for detailed help.

Service Management

CommandDescription
roblox-studio-hub serveRun server in foreground (for debugging)
roblox-studio-hub installRegister as system service (auto-start)
roblox-studio-hub uninstallUninstall system service
roblox-studio-hub startStart system service
roblox-studio-hub stopStop system service
roblox-studio-hub statusCheck Hub service status
roblox-studio-hub updateUpdate to latest version (auto-handles service restart)

Studio Management

CommandDescription
roblox-studio-hub listList all connected Studios
roblox-studio-hub info <studioId>Show Studio details
roblox-studio-hub logs <studioId> [-n limit]View Studio logs

Code Execution

# Basic usage
roblox-studio-hub exec <studioId> <file> [-m mode]

# Examples
roblox-studio-hub exec place:123456 script.lua           # Execute with eval mode
roblox-studio-hub exec local:MyGame test.lua -m run      # Server-side test
roblox-studio-hub exec path:D:/Projects/MyGame test.lua --mode play  # Full play mode

Plugin Management

roblox-studio-hub install-plugin    # Install Studio plugin

Update Hub

roblox-studio-hub update

The update command automatically:

  1. Stops running service
  2. Executes npm update
  3. Restarts service

Execution Modes

ModeDescriptionUse Case
evalDirect execution via loadstring (default)Quick scripts, simple tests
runServer-side test via StudioTestServiceServer logic testing
playFull Play mode (server + client)Complete game testing

Studio ID Format

  • Cloud place: place:{placeId} (e.g., place:123456)
  • Local file: local:{placeName} (e.g., local:MyGame)
  • Custom path: path:{localPath} (e.g., path:D:/Projects/MyGame)

Common Workflows

Check Connected Studios

# List all connected Studios
roblox-studio-hub list

# Get details of a specific Studio
roblox-studio-hub info place:123456

Execute Lua Script

# Create a test script
echo "print('Hello from Hub!'); return 42" > test.lua

# Execute on a connected Studio
roblox-studio-hub exec place:123456 test.lua

View Studio Logs

# View last 100 logs (default)
roblox-studio-hub logs place:123456

# View last 50 logs
roblox-studio-hub logs local:MyGame -n 50

Update Hub to Latest Version

# Update with automatic service handling
roblox-studio-hub update

# Update plugin if needed
roblox-studio-hub install-plugin

API Reference (for programmatic access)

Check Hub Status

GET /api/status

List Connected Studios

GET /api/studios

Get Studio Details

GET /api/studios/:id

Get Studio Logs

GET /api/studios/:id/logs?limit=100

Execute Code

POST /api/execute
Content-Type: application/json

{
  "studioId": "place:123456",
  "code": "print('Hello'); return 42",
  "mode": "eval",
  "timeout": 30
}

Configuration

Environment Variables

VariableDefaultDescription
STUDIO_HUB_PORT35888Server port

Troubleshooting

IssueSolution
Studio not connectingEnable HTTP requests in Studio Settings → Security
Connection timeoutCheck firewall, verify port 35888 is open
Code execution failsCheck Lua syntax, review error in response
Studio disconnectsHub removes inactive Studios after 35s without heartbeat
Service not startingRun roblox-studio-hub install with admin/sudo privileges
Update failsRun with admin/sudo privileges

Additional Resources

Reference Files

For detailed API documentation and patterns:

  • references/api-reference.md - Complete API specification
  • references/lua-patterns.md - Common Lua code patterns for testing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.32%
按下载量换算102

Claude

29.03%
按下载量换算86

Cursor

18.83%
按下载量换算56

Gemini CLI

9.18%
按下载量换算27

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills