๐ฆ ClawHub
Roblox
by @teddyengel
Manage Roblox game passes and developer products via Open Cloud API.
๐ก Examples
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 Get specific game pass details
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes get Create new game pass
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes create --name "VIP Pass" --price 100 --for-sale trueUpdate game pass
npx -y bun ${SKILL_DIR}/scripts/cli.ts passes update --price 50
Developer Products
# List all developer products for a universe
npx -y bun ${SKILL_DIR}/scripts/cli.ts products list Get specific product details
npx -y bun ${SKILL_DIR}/scripts/cli.ts products get Create new product
npx -y bun ${SKILL_DIR}/scripts/cli.ts products create --name "Gold Coins" --price 25 --for-sale trueUpdate product
npx -y bun ${SKILL_DIR}/scripts/cli.ts products update --price 30
โ๏ธ Configuration
Create/Update Flags:
--name - Name of the pass/product (required for create)--description - Description text (optional)--price - Price in Robux (required for create)--for-sale - Whether item is for sale (default: true)๐ Tips & Best Practices
--for-sale false in update commandTERMINAL
clawhub install roblox-cli