원클릭으로
create-command
Create a new custom slash command — generates a SKILL.md template and saves it to ProjectSettings/GameDeck/commands/.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a new custom slash command — generates a SKILL.md template and saves it to ProjectSettings/GameDeck/commands/.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Rapid prototyping workflow for Unity. Quickly validates a mechanic or concept with throwaway code and a structured report.
Load a saved plan from ProjectSettings/GameDeck/plans/ and execute it step-by-step.
Save a plan to ProjectSettings/GameDeck/plans/ — captures the most recent plan from this conversation, or a plan you provide directly.
Plan a feature implementation with tasks, architecture, and file list.
Generate a complete Unity system — MonoBehaviour + ScriptableObject config from structured input.
Analyze and refactor a file or system with before/after comparison.
| name | create-command |
| description | Create a new custom slash command — generates a SKILL.md template and saves it to ProjectSettings/GameDeck/commands/. |
| argument-hint | [command-name] |
| user-invocable | true |
| allowed-tools | Read, Write, Glob |
When this skill is invoked:
Parse the command name from the user's message. If the user wrote
/create-command fix-imports, the name is fix-imports. If no name
was provided, ask for one. The name must be lowercase, kebab-case,
no spaces (e.g., my-command, check-layers, setup-scene).
Ask the user what this command should do:
/<name> do? Describe it in one sentence."Generate the SKILL.md file following this exact format:
---
name: <command-name>
description: "<one-sentence description>"
argument-hint: "<what arguments it expects, if any>"
user-invocable: true
allowed-tools: Read, Glob, Grep, Write, Edit, Bash
---
When this skill is invoked:
1. <step 1>
2. <step 2>
...
Output format:
<describe the expected output>
Base the allowed-tools on what the command needs. Read-only commands don't need Write/Edit. Use the existing skills in the package as reference for style and structure.
Save the file using the Write tool to:
ProjectSettings/GameDeck/commands/<name>/SKILL.md
Create the directory if it doesn't exist.
Confirm to the user:
"Command /<name> created! You can use it now — type / in the
chat and it will appear in the autocomplete."