roblox-cloud

Installation
SKILL.md

roblox-cloud

When to Load

Load this skill when the task involves Roblox Open Cloud REST APIs, API-key authentication, webhook setup, or HttpService calls to Open Cloud endpoints. Skip it for OAuth flows (use roblox-oauth), persistent data design (use roblox-data), gameplay networking (use roblox-networking), or pure engine API lookups (use roblox-api).

Quick Reference

Open Cloud REST APIs

  • Base: https://apis.roblox.com/cloud/v2/… (v1 for legacy)
  • Auth: x-api-key: <API_KEY> header for server-to-server
  • Content-Type: application/json for bodies
  • Pagination: read nextPageToken, pass it back as pageToken query param
  • Update masks: use updateMask query param for partial PATCH
  • Long-running ops: poll the returned Operation resource with exponential backoff
  • Error codes: INVALID_ARGUMENT (bad input), PERMISSION_DENIED/INSUFFICIENT_SCOPE (auth), RESOURCE_EXHAUSTED/429 (rate limit → backoff), UNAVAILABLE (transient → retry)
Installs
98
GitHub Stars
9
First Seen
May 28, 2026
roblox-cloud — tabooharmony/roblox-brain