roblox-data
Installation
SKILL.md
roblox-data
When to Use
Use this skill when the task is mainly about Roblox data durability, shared cross-server state, or quota-aware coordination:
- Designing persistent player saves, global config-like records, or other
DataStoreServiceusage. - Choosing between standard data stores and ordered data stores.
- Structuring save payloads, schema versions, migrations, and metadata.
- Deciding when to use
SetAsync(),UpdateAsync(),IncrementAsync(), or version APIs. - Designing ephemeral cross-server systems with
MemoryStoreService. - Choosing between memory store queues, sorted maps, and hash maps.
- Coordinating multiple servers with
MessagingService. - Handling throttling, request budgets, retries, backoff, contention, and observability.
- Reasoning about stale reads, cache behavior, idempotency, and multi-server correctness.
Do not use this skill when the task is mainly about: