Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add nonlooped/roblox-suite --skill roblox-open-cloudgit clone --depth 1 https://github.com/nonlooped/roblox-suiteWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nonlooped/roblox-suite/roblox-open-cloud)<a href="https://agentmods.dev/skills/nonlooped/roblox-suite/roblox-open-cloud"><img src="https://agentmods.dev/badge/skills/nonlooped/roblox-suite/roblox-open-cloud/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nonlooped/roblox-suite/roblox-open-cloud"><img src="https://agentmods.dev/badge/skills/nonlooped/roblox-suite/roblox-open-cloud.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 84 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00128 | $0.04163 |
| Opus 5 | $0.00064 | $0.02082 |
| Sonnet 5 | $0.00026 | $0.00833 |
| Haiku 4.5 | $0.00013 | $0.00416 |
Grade A, and why
roblox-open-cloud scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl --location --request POST 'https://apis.roblox.com/api-keys/v1/introspect' \ How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
roblox-open-cloud
Official sources (always check these for the latest):
- https://create.roblox.com/docs/en-us/cloud (API reference index)
- https://create.roblox.com/docs/en-us/cloud/auth/api-keys (API key management)
- https://create.roblox.com/docs/cloud/auth/oauth2-overview (OAuth 2.0)
- https://create.roblox.com/docs/en-us/cloud-services/http-service (in-experience calls)
- https://create.roblox.com/docs/en-us/cloud/reference/rate-limits
- https://create.roblox.com/docs/en-us/cloud/webhooks/webhook-notifications
Open Cloud is the REST API surface for Roblox resources. It lets you build command-line tools, web apps, CI/CD pipelines, scheduled jobs, and external automation that read and write the same resources your live game servers use — without spinning up a game server.
Cross-reference:
- roblox-datastores/SKILL.md — in-engine DataStore API; Open Cloud Data Stores is the external counterpart.
- roblox-gamepasses/SKILL.md — game passes, developer products, and subscriptions also have Open Cloud management endpoints.
- roblox-networking/SKILL.md — for in-experience HTTP via
HttpServiceand the security model around outbound requests. - roblox-core/SKILL.md — services,
HttpService, script contexts.
When to use this skill
Activate when:
- Building external automation that reads/writes Roblox resources (data stores, places, assets, groups, users).
- Implementing CI/CD for place publishing or asset upload.
- Doing bulk data operations (migration, cleanup, RTBF deletion, snapshot/restore) at a scale that's painful from in-engine scripts.
- Receiving webhook notifications (subscription purchased/refunded/renewed, etc.).
- Calling Open Cloud endpoints from inside a live game server via
HttpService(e.g. updating a group membership from in-experience). - Managing API keys, OAuth 2.0 clients, or secrets for Roblox automation.
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 285 lines · 128 tokens per session scan A b3f165b91c37
roblox-open-cloud is a skill published in the GitHub repository nonlooped/roblox-suite (14 stars, last pushed 6d ago), licensed MIT. It adds 128 tokens to every session and 4,163 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
roblox-engineer
!cat skills/shared/game-visual-foundations.md 2>/dev/null || echo "=== Visual Foundations not loaded ===" !cat skills/shared/protocols/ux-protocol.md 2>/dev/null || true !cat skills/shared/protocols/game-test-protocol.md 2>/dev/null || true !cat skills/shared/protocols/quality-gate.md 2>/dev/null || true !cat…
csharp-godot
Use when working with C# in Godot — conventions, GodotSharp API differences from GDScript, project setup, and interop.
roblox-dev-skill
Core scripting and engine skill for Roblox game development. Covers full-lifecycle development: architecture, Luau scripting, debugging, security, performance, data persistence, networking, and the Roblox Studio environment. MUST use this skill whenever the user mentions: 'Roblox', 'Luau', 'Roblox Studio'…
roblox-cloud
Use for Roblox Open Cloud APIs, API keys, OAuth 2.0, webhooks, scopes, token lifecycle, or in-experience HttpService calls.
roblox-best-practices
Framework-agnostic Roblox/Luau coding standards. Use when writing, reviewing, or refactoring any Luau code (Script, LocalScript, ModuleScript) in a Roblox project, or when the user asks to keep best practices in mind as standing guidance — enforces the VARIABLES/FUNCTIONS/INITIALIZATION layout, naming, performance…
professional-game-developer
Universal production game engineering skill — design, build, profile, test, and ship games across Unreal Engine 5, Unity 6 (DOTS), Godot 4.3+, Roblox (Luau), and Web/Custom engines with senior studio-grade architectural discipline. Encompasses all 42 specialized game studio job roles across 6 departments: Game Design…