Sandbox
@TabooHarmony/roblox-brain

Roblox Studio skills for Claude Code and Codex

`roblox-brain` packages Roblox Studio guidance into small, focused skills that an agent can load as needed. The skills are organized by topic, and each one starts with a `SKILL.md` entry point that can point to deeper reference material when the task needs it.

42 starsβ€’3 forksβ€’Pythonβ€’Updated 11d ago
Who it's for

Builders who want their coding agent to work with Roblox Studio knowledge and reusable project guidance.

What it delivers

You can give your agent Roblox-specific context without re-explaining Luau, Studio workflows, or game-system patterns each time.

What it does

Focused Roblox skills

29 skills cover Luau, architecture, collaboration, design, networking, UI, physics, data, monetization, localization, tooling, and publishing.

Progressive disclosure

Each skill starts with `SKILL.md` and can load `references/full.md` only when deeper examples or API details are needed.

Skill-specific installs

You can install the full library or a single skill with `npx skills add ...`, or copy one skill directory into an agent skills folder.

Roblox Studio and tool support

The README says it works with Codex, Claude Code, Cursor, Roblox Assistant, and other tools that support agent skills.

Validation scripts

The repo includes scripts to validate skills, check API drift, verify source URLs, and verify version pins.

How to get it

  1. 1Run
    # install the full library
    npx skills add TabooHarmony/roblox-brain
    
    # install one skill
    npx skills add TabooHarmony/roblox-brain --skill roblox-building
  2. 2To install manually, copy the whole skill directory, not just the file. A SKILL.md is an…
    # whole directory, references included
    cp -r skills/roblox-growth-design ~/.claude/skills/

README

roblox-brain 🧠

A practical skill library for Roblox Studio coding agents.

Works with Codex, Claude Code, Cursor, Roblox Assistant, and other tools that support agent skills.

CI GitHub Release License skills.sh

What this is

roblox-brain gives an AI coding agent focused Roblox Studio knowledge without forcing every task through one framework. Each skill starts small and expands only when the task needs deeper examples or API details.

  • 29 focused skills across Luau, architecture, collaboration behavior, game design, networking, UI, physics, data, monetization, localization, tooling, and publishing.
  • Guidance grounded in Roblox Creator Hub documentation, compatible external tools, and original synthesis.

Install

# install the full library
npx skills add TabooHarmony/roblox-brain

# install one skill
npx skills add TabooHarmony/roblox-brain --skill roblox-building

To install manually, copy the whole skill directory, not just the file. A SKILL.md is an entry point, not the whole skill: skills link references/full.md for depth and examples, and a file-only copy loses that material.

# whole directory, references included
cp -r skills/roblox-growth-design ~/.claude/skills/

Works the same for .codex/skills/, .cursor/skills/, and other compatible skill directories. A directory copy is self-contained: everything the entry point links ships with it. If an agent hits a link to a references/full.md that was not copied, the right response is to say the reference is missing and ask the user to copy that skill's whole directory from this repo. Never summarize reference material that is not there, and never present it as loaded.

Skills (29)

Core language and architecture

SkillWhat it covers
roblox-luau-coreLuau syntax, tables, control flow, string patterns, scope, closures, idioms, and language traps
roblox-luau-typesTypes, generics, narrowing, inference, sealed/unsealed tables, exports, and Roblox-aware typing
roblox-luau-patternsModule boundaries, object lifecycles, signals, scheduling, fallible calls, and cleanup
roblox-architectureFeature ownership, runtime location, dependencies, startup, and client/server authority

Game design and growth

SkillWhat it covers
roblox-growth-designDiscovery, positioning, onboarding, retention, experiments, packaging, LiveOps, and growth diagnosis

Monetization

SkillWhat it covers
roblox-monetizationGame Passes, Developer Products, receipts, subscriptions, policy checks, and purchase recovery

Systems and networking

SkillWhat it covers
roblox-networkingServer-authoritative networking, remote validation, rate limits, and exploit resistance
roblox-securityAnti-exploit design, movement, remote, economy, and data hardening
roblox-dataPlayer persistence, schemas, migrations, retries, and session ownership
roblox-server-dataOrderedDataStore, MessagingService, global state, and cross-server coordination
roblox-analyticsCustom events, economy tracking, funnels, rate limits, and event taxonomy
roblox-npc-aiPathfinding, state machines, detection, spawning, and network ownership

Performance and runtime

SkillWhat it covers
roblox-performanceProfiling, optimization, pooling, streaming, mobile performance, and budgets

Building and UI

SkillWhat it covers
roblox-buildingRoblox geometry, maps, props, generated assets, MCP workflows, and acceptance gates
roblox-physicsConstraints, vehicles, ragdolls, projectiles, elevators, and network ownership
roblox-guiScreen, surface, and world UI; layout, responsiveness, input, and UI state
roblox-ui-designContent-led visual systems, existing-style inheritance, optional simulator styling, composition, and hierarchy
roblox-animation-vfxAnimations, particles, beams, trails, tweens, camera feedback, and cleanup
roblox-lightingLighting, atmosphere, post-processing, mood presets, and day/night cycles
roblox-audioSoundService, spatial audio, music systems, SFX, ambient layers, and volume management
roblox-inputUserInputService, ContextActionService, keyboard, mouse, gamepad, and touch
roblox-cameraCamera types, CFrame math, custom controllers, cutscenes, and screen shake

MCP and cloud

SkillWhat it covers
roblox-studio-mcpStudio MCP capabilities, bridge-neutral routing, reliability, building, and testing workflows
roblox-cloudOpen Cloud REST APIs, API keys, OAuth 2.0, PKCE, webhooks, HttpService, and token lifecycle

Workflow and tooling

SkillWhat it covers
roblox-collaboration-modePeer vs autonomous working mode, risk-scaled initiative, and surfacing uncertainty before domain work
roblox-code-reviewReviews through security, performance, correctness, and monetization lenses
roblox-publish-checklistChange-scoped release gates, evidence, dashboard checks, and rollback readiness
roblox-toolingRojo, Wally, Selene, StyLua, Lune, Aftman, sourcemaps, and CI
roblox-localizationLocalizationService, translation tables, locale handling, and auto-translation

How the content is organized

Skills use progressive disclosure so an agent can start with a small context window and load detail only when needed:

skills/roblox-gui/
β”œβ”€β”€ SKILL.md              # quick reference
└── references/
    └── full.md           # examples, API notes, and edge cases
  1. Discovery: the host reads skill names and descriptions from SKILL.md frontmatter.
  2. Quick reference: the selected SKILL.md gives default rules and routing.
  3. Full reference: linked references/full.md material is loaded only when the task needs it.

Recommended tooling

  • chrrxs/robloxstudio-mcp: the recommended Studio MCP server. Open source (MIT), and adds runtime debugging, multiplayer playtests, profiling, per-instance routing, and more. The official Roblox Studio MCP built into Studio works fine as well if you prefer the built-in option.

Contributing

PRs are welcome. Useful contributions include:

  • correcting an API reference or deprecated pattern;
  • adding a focused, widely applicable production pattern;
  • expanding examples from a compatible license, explicit permission, or original work;
  • keeping skills small, non-overlapping, and practical.

Before opening a PR, run:

python3 validate_skills.py
python3 -m unittest discover -s tests -p 'test_*.py'
python3 verify_api_drift.py
python3 verify_source_urls.py
python3 verify_version_pins.py

Contributors

  • MrFearTick: code references, networking, and monetization expansion
  • eeyq: content and references for the roblox-growth-design skill

License

MIT

Files in the repo

Repository payloadβ€’16 top-level entries
  • .github
  • skills
  • tests
  • vendor
  • .gitignore
  • AGENTS.md
  • api_drift_registry.yaml
  • CHANGELOG.md
  • LICENSE
  • mirror_creator_docs.py
  • README.md
  • requirements.txt
  • validate_skills.py
  • verify_api_drift.py
  • verify_source_urls.py
  • verify_version_pins.py

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications β€” runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k