Roblox Knowledge Engine for Claude Code, Codex, OpenCode, and Cursor. Queries 11 data sources, commands 18 Studio tools, runs 6 local API dump subcommands, and combines results across 23 patterns to answer any Roblox development question.
Bloxus is an AI coding-assistant skill that automatically activates when you work on Roblox projects. It pulls from:
| Source | What it covers |
|---|---|
| API Dump | Every class, property, method, event, enum — structured with types, defaults, tags, security |
| Engine API Docs | Code examples and detailed explanations via Context7 |
| Creator Docs | Tutorials, guides, Studio features, cloud APIs, UI, physics, networking, monetization |
| Roblox Studio MCP | Live game tree inspection, script reading, Luau execution, console output |
| Community Packages | ProfileService, Promise, Knit, Rodux, Matter, Fusion, Iris + auto-detect from wally.toml |
| DevForum Search | Community discussions, solutions, and announcements |
| Luau Language | Type system, language spec, RFCs, standard library, style guide |
| API Dump Diffing | What changed between Roblox versions |
| Roblox Status | Service health checks |
- Run
/install-plugin github:CyanoTex/bloxusin Claude Code - Done — Bloxus activates automatically and updates itself
- Copy the
codex/folder to~/.codex/skills/bloxus - Run
node codex/scripts/api-dump.js fetchto cache the API dump on first use - Optional: configure the Context7 MCP server for up-to-date docs lookups
- Copy the
opencode/folder into your Roblox project - Copy
opencode/opencode.jsonto your project root (or merge thecontext7entry into your existingopencode.json) - Run
node opencode/scripts/api-dump.js fetchto cache the API dump on first use
- Copy the
cursor/folder into your Roblox project - Optional: add the Context7 MCP server to your workspace
.mcp.json(seecursor/references/context7.md) - Run
node cursor/scripts/api-dump.js fetchto cache the API dump on first use
- Claude Code, Codex, OpenCode, or Cursor
- Context7 MCP server — powers 6 of the 11 data sources (Engine API, Creator Docs, community packages, Luau language, style guide)
- Node.js 18+ — runs the local API dump analysis scripts
- Roblox Studio MCP server — enables live Studio interaction (Step E). Without it, Bloxus still works using all other sources.
- API Dump: Fetched from MaximumADHD/Roblox-Client-Tracker (MIT License). Cached locally with a 7-day TTL. Downloads automatically on first use.
- API Dump Diffing: Uses git history from the same Client-Tracker repo to compare versions.
- Context7 sources: Queried live via MCP — no local caching of docs content.
- DevForum: Public Discourse API — community-generated content, cross-reference with official docs.
After cloning, enable the project git hooks:
git config core.hooksPath .githooksThis wires up automatic version bumping — the pre-commit hook bumps the patch version in plugin.json and marketplace.json on the first code commit of each branch.
Want to add Bloxus support for another AI tool? See CONTRIBUTING.md for the edition structure, parity requirements, and submission process.
- The cached dump (
Full-API-Dump.json) is gitignored — regenerates automatically - Bloxus does not store or redistribute any Roblox intellectual property — it fetches documentation on demand
- Bloxus is updated as Roblox APIs evolve — pull the latest from this repo periodically to stay current