prototype
Quick prototype workflow — minimal viable implementation, no production standards, README with hypothesis. Code goes in prototypes/, never imported from src/.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quick prototype workflow — minimal viable implementation, no production standards, README with hypothesis. Code goes in prototypes/, never imported from src/.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run a comprehensive health check on the repo. Verifies README counts match reality, promised files exist, no unresolved placeholders, wiki index is synced, toolchain configs are valid, and agent roster is accurate. Use after making structural changes or before publishing.
Begin a new Roblox game project or onboard to an existing one. Use when starting a fresh session with no context, or when the user says "let's start" or "new project".
Generate a 3D asset from a reference image using Blender MCP's image-to-3D AI (Hyper3D). Optimizes for Roblox and exports FBX.
Generate a 3D asset for Roblox using Blender MCP. Creates models from text descriptions via AI (Hyper3D/Hunyuan3D) or downloads from PolyHaven/Sketchfab, optimizes for Roblox constraints, and exports FBX.
Inspect the current Roblox Studio state via MCP. Verifies instance hierarchy, checks for common structural issues, and reports findings.
Capture a screenshot of the current Roblox Studio viewport and analyze it. Use for visual verification of UI, lighting, level layout, and general game appearance.
| name | prototype |
| description | Quick prototype workflow — minimal viable implementation, no production standards, README with hypothesis. Code goes in prototypes/, never imported from src/. |
Prototypes are throwaway code to test an idea quickly. They are NOT production code.
prototypes/<prototype-name>/src/src/ — if the idea is good, rewrite cleanlyAsk the user:
prototypes/
└── <prototype-name>/
├── README.md # Hypothesis, how to run, findings
├── src/ # Prototype Luau files
└── assets/ # Any placeholder assets
Write code that answers the question. Do NOT:
DO:
After running, update the README:
# Prototype: [Name]
## Hypothesis
[What we were testing]
## How to Run
1. [Setup steps]
2. [Run steps]
## What We Learned
- [Finding 1]
- [Finding 2]
- [Unexpected result]
## Go / No-Go
**Verdict**: [Good idea / bad idea / needs more research]
## If Go, Next Steps
1. [How to translate this into production]
2. [What specialists are needed]
3. [What systems it affects]
## If No-Go
- [Why it didn't work]
- [Alternative approaches to consider]
User decides: