원클릭으로
map-systems
Decomposes a game concept into individual systems, maps dependencies, and prioritizes design/implementation order.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Decomposes a game concept into individual systems, maps dependencies, and prioritizes design/implementation order.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| name | map-systems |
| description | Decomposes a game concept into individual systems, maps dependencies, and prioritizes design/implementation order. |
| argument-hint | [concept-doc-path or description] |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep, Write, Edit |
When this skill is invoked:
Read the concept (design doc or description).
Extract explicit systems: Systems directly mentioned.
Identify implicit systems: Systems implied but not stated (e.g., inventory implies item database, save system implies serialization).
Map dependencies: Which systems depend on which.
Prioritize:
Output:
## Systems Map: [Concept]
### Systems Identified
| System | Type | Priority | Dependencies |
|--------|------|----------|--------------|
| ... | Explicit/Implicit | MVP/VS/Alpha/Full | ... |
### Dependency Graph
[Text representation of dependencies]
### Recommended Implementation Order
1. [System] — no dependencies, MVP
2. [System] — depends on #1, MVP
...
### Design Order (design these first)
1. [System] — most depended upon