agentsclimarketplace

Roblox architecture

Skill TabooHarmony/roblox-brain/skills/roblox-architecture

Give your AI coding agent a Roblox brain. Curated skills for Roblox Studio development.

Install
npx -y skills add TabooHarmony/roblox-brain --skill roblox-architecture

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when starting or refactoring a Roblox project, choosing service or module structure, or making client-server architecture decisions.

SKILL.md

1.4 KB, as published. Nobody here has run it

roblox architecture

When to Load

Load when deciding where code and assets belong, introducing service or controller modules, or changing the client/server boundary.

Quick Reference

  • Put authoritative game rules in ServerScriptService; keep server-only templates and secrets in ServerStorage.
  • Put only genuinely shared modules, remotes, and public assets in ReplicatedStorage.
  • Treat LocalScript code and replicated contents as observable and modifiable by the player.
  • Give each module one owner and one clear contract. Use signals or a coordinator for cross-system communication instead of circular require calls.
  • Use one small bootstrap on each side, then initialize feature modules in an explicit order.
  • Keep UI and input controllers on the client. Keep rewards, inventory, combat outcomes, and persistence on the server.

Need the details? Load references/full.md for layouts, lifecycle code, and boundary checks.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.