Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

roblox-cliroblox CLI

Agent Skill

roblox-cli 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,848

周安装

365

GitHub Stars

1

下载量

2,891
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:roblox-cli(roblox CLI)
来源仓库:https://github.com/teddyengel/roblox-cli
安装命令:
openclaw skills install roblox-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install roblox-cli

简介

通过开放云 API 管理 Roblox 游戏通行证和开发者产品。

  • 适合在 OpenClaw 中部署、配置或维护 Roblox 相关服务。
  • 通过 clawhub 安装,使用 openclaw skills install roblox-cli 命令。
  • 需确认权限范围和维护状态,注意是否触发联网或外部 API 调用。
  • 建议结合来源仓库和 README 了解认证方式与安全边界。

SKILL.md

name
roblox-cli
description
Manage Roblox game passes and developer products via Open Cloud API.
metadata
{"clawdbot":{"requires":{"env":["ROBLOX_API_KEY"]},"primaryEnv":"ROBLOX_API_KEY","emoji":"🎮","homepage":"https://create.roblox.com/docs/cloud","source":"https://github.com/ingalls-ltd/RobloxCliSkillOpenClaw"}}

Roblox CLI

Manage Roblox game passes and developer products via the Open Cloud API.

Features

  • List games owned by your API key
  • Manage game passes (list, get, create, update)
  • Manage developer products (list, get, create, update)
  • JSON output for easy parsing
  • Automatic pagination
  • Rate limit handling with exponential backoff

Setup

  1. Create a Roblox API key in Creator Hub

- If you land on the OAuth 2.0 Apps page, click "All Tools" then "API Keys"

  1. Add the required access permissions:

- game-pass:read and game-pass:write for game passes - developer-product:read and developer-product:write for products

  1. Optionally restrict access to specific experiences
  2. Set the ROBLOX_API_KEY environment variable

Usage

The skill is invoked via:

npx -y bun ${SKILL_DIR}/scripts/cli.ts [command] [subcommand] [args] [options]

Commands

Games

# List all games owned by API key holder
npx -y bun ${SKILL_DIR}/scripts/cli.ts games list

Game Passes

# List all game passes for a universe
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes list <universeId>

# Get specific game pass details
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes get <universeId> <passId>

# Create new game pass
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes create <universeId> --name "VIP Pass" --price 100 --for-sale true

# Update game pass
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes update <universeId> <passId> --price 50

Developer Products

# List all developer products for a universe
npx -y bun ${SKILL_DIR}/scripts/cli.ts products list <universeId>

# Get specific product details
npx -y bun ${SKILL_DIR}/scripts/cli.ts products get <universeId> <productId>

# Create new product
npx -y bun ${SKILL_DIR}/scripts/cli.ts products create <universeId> --name "Gold Coins" --price 25 --for-sale true

# Update product
npx -y bun ${SKILL_DIR}/scripts/cli.ts products update <universeId> <productId> --price 30

Options

Create/Update Flags:

  • --name <name> - Name of the pass/product (required for create)
  • --description <desc> - Description text (optional)
  • --price <robux> - Price in Robux (required for create)
  • --for-sale <true|false> - Whether item is for sale (default: true)

Output Format

All commands return JSON:

Success:

{
  "success": true,
  "data": [...]
}

Error:

{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Error description"
  }
}

Error Codes:

  • MISSING_API_KEY - ROBLOX_API_KEY environment variable not set
  • INVALID_API_KEY - API key could not be parsed
  • INVALID_ARGS - Missing required arguments or invalid flag values
  • NOT_FOUND - Requested resource not found
  • API_ERROR - Roblox API returned an error
  • RATE_LIMITED - Max retries exceeded on 429 responses
  • NETWORK_ERROR - Network request failed

Environment Variables

  • ROBLOX_API_KEY (required) - Your Roblox Open Cloud API key from Creator Hub

API Permissions

Your API key must have the following permissions:

FeatureRequired Permission
Game Passes - Readgame-pass:read
Game Passes - Writegame-pass:write
Developer Products - Readdeveloper-product:read
Developer Products - Writedeveloper-product:write

Notes

  • Game passes automatically get a placeholder icon (150x150 green PNG)
  • All list commands fetch all pages automatically
  • Rate limiting is handled with exponential backoff (max 3 retries)
  • Delete operations are not supported (Roblox API limitation)
  • To disable an item, use --for-sale false in update command

Testing

Run unit tests:

bun test skills/roblox-cli/scripts/__tests__

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

79.7%
按下载量换算2,304

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills