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/jsonfor bodies - Pagination: read
nextPageToken, pass it back aspageTokenquery param - Update masks: use
updateMaskquery 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)