Guided Onboarding
This skill writes one file: production/review-mode.txt (review mode config set in Phase 3b).
This skill is the entry point for new users. It does NOT assume you have a game idea, an engine preference, or any prior experience. It asks first, then routes you to the right workflow.
Phase 1: Detect Project State
Before asking anything, silently gather context so you can tailor your guidance. Do NOT show these results unprompted — they inform your recommendations, not the conversation opener.
Check:
- Engine configured? Read
.claude/docs/technical-preferences.md. If the Engine field contains [TO BE CONFIGURED], the engine is not set.
- Game concept exists? Check for
design/gdd/game-concept.md.
- Source code exists? Glob for source files in
src/ (*.gd, *.cs, *.cpp, *.h, *.rs, *.py, *.js, *.ts).
- Prototypes exist? Check for subdirectories in
prototypes/.
- Design docs exist? Count markdown files in
design/gdd/.
- Production artifacts? Check for files in
production/sprints/ or production/milestones/.
Store these findings internally to validate the user's self-assessment and tailor recommendations.
Phase 2: Ask Where the User Is
This is the first thing the user sees. Use AskUserQuestion with these exact options so the user can click rather than type:
- Prompt: "Welcome to Claude Code Game Studios! Before I suggest anything, I'd like to understand where you're starting from. Where are you at with your game idea right now?"
- Options:
A) No idea yet — I don't have a game concept at all. I want to explore and figure out what to make.
B) Vague idea — I have a rough theme, feeling, or genre in mind (e.g., "something with space" or "a cozy farming game") but nothing concrete.
C) Clear concept — I know the core idea — genre, basic mechanics, maybe a pitch sentence — but haven't formalized it into documents yet.
D) Existing work — I already have design docs, prototypes, code, or significant planning done. I want to organize or continue the work.
Wait for the user's selection. Do not proceed until they respond.
Phase 3: Route Based on Answer
If A: No idea yet
The user needs creative exploration before anything else.
- Acknowledge that starting from zero is completely fine
- Briefly explain what
/brainstorm does (guided ideation using professional frameworks — MDA, player psychology, verb-first design). Mention that it has two modes: /brainstorm open for fully open exploration, or /brainstorm [hint] if they have even a vague theme (e.g., "space", "cozy", "horror").
- Recommend running
/brainstorm open as the next step, but invite them to use a hint if something comes to mind
- Show the recommended path:
Concept phase:
/brainstorm open — discover your game concept
/setup-engine — configure the engine (brainstorm will recommend one)
/art-bible — define visual identity (uses the Visual Identity Anchor brainstorm produces)
/map-systems — decompose the concept into systems
/design-system — author a GDD for each MVP system
/review-all-gdds — cross-system consistency check
/gate-check — validate readiness before architecture work
Architecture phase:
/create-architecture — produce the master architecture blueprint and Required ADR list
/architecture-decision (×N) — record key technical decisions, following the Required ADR list
/create-control-manifest — compile decisions into an actionable rules sheet
/architecture-review — validate architecture coverage
Pre-Production phase:
/ux-design — author UX specs for key screens (main menu, HUD, core interactions)
/prototype — build a throwaway prototype to validate the core mechanic
/playtest-report (×1+) — document each vertical slice playtest session
/create-epics — map systems to epics
/create-stories — break epics into implementable stories
/sprint-plan — plan the first sprint
Production phase: → pick up stories with /dev-story
If B: Vague idea
- Ask them to share their vague idea — even a few words is enough
- Validate the idea as a starting point (don't judge or redirect)
- Recommend running
/brainstorm [their hint] to develop it
- Show the recommended path:
Concept phase:
/brainstorm [hint] — develop the idea into a full concept
/setup-engine — configure the engine
/art-bible — define visual identity (uses the Visual Identity Anchor brainstorm produces)
/map-systems — decompose the concept into systems
/design-system — author a GDD for each MVP system
/review-all-gdds — cross-system consistency check
/gate-check — validate readiness before architecture work
Architecture phase:
/create-architecture — produce the master architecture blueprint and Required ADR list
/architecture-decision (×N) — record key technical decisions, following the Required ADR list
/create-control-manifest — compile decisions into an actionable rules sheet
/architecture-review — validate architecture coverage
Pre-Production phase:
/ux-design — author UX specs for key screens (main menu, HUD, core interactions)
/prototype — build a throwaway prototype to validate the core mechanic
/playtest-report (×1+) — document each vertical slice playtest session
/create-epics — map systems to epics
/create-stories — break epics into implementable stories
/sprint-plan — plan the first sprint
Production phase: → pick up stories with /dev-story
If C: Clear concept
- Ask them to describe their concept in one sentence — genre and core mechanic. Use plain text, not AskUserQuestion (it's an open response).
- Acknowledge the concept, then use
AskUserQuestion to offer two paths:
- Prompt: "How would you like to proceed?"
- Options:
Formalize it first — Run /brainstorm [concept] to structure it into a proper game concept document
Jump straight in — Go to /setup-engine now and write the GDD manually afterward
- Show the recommended path:
Concept phase:
/brainstorm or /setup-engine — (their pick from step 2)
/art-bible — define visual identity (after brainstorm if run, or after concept doc exists)
/design-review — validate the concept doc
/map-systems — decompose the concept into individual systems
/design-system — author a GDD for each MVP system
/review-all-gdds — cross-system consistency check
/gate-check — validate readiness before architecture work
Architecture phase:
/create-architecture — produce the master architecture blueprint and Required ADR list
/architecture-decision (×N) — record key technical decisions, following the Required ADR list
/create-control-manifest — compile decisions into an actionable rules sheet
/architecture-review — validate architecture coverage
Pre-Production phase:
/ux-design — author UX specs for key screens (main menu, HUD, core interactions)
/prototype — build a throwaway prototype to validate the core mechanic
/playtest-report (×1+) — document each vertical slice playtest session
/create-epics — map systems to epics
/create-stories — break epics into implementable stories
/sprint-plan — plan the first sprint
Production phase: → pick up stories with /dev-story
If D: Existing work
Share what you found in Phase 1:
- "I can see you have [X source files / Y design docs / Z prototypes]..."
- "Your engine is [configured as X / not yet configured]..."
Sub-case D1 — Early stage (engine not configured or only a game concept exists):
- Recommend
/setup-engine first if engine not configured
- Then
/project-stage-detect for a gap inventory
Sub-case D2 — GDDs, ADRs, or stories already exist:
- Explain: "Having files isn't the same as the template's skills being able to use them. GDDs might be missing required sections.
/adopt checks this specifically."
- Recommend:
/project-stage-detect — understand what phase and what's missing entirely
/adopt — audit whether existing artifacts are in the right internal format
Show the recommended path for D2:
/project-stage-detect — phase detection + existence gaps
/adopt — format compliance audit + migration plan
/setup-engine — if engine not configured
/design-system retrofit [path] — fill missing GDD sections
/architecture-decision retrofit [path] — add missing ADR sections
/architecture-review — bootstrap the TR requirement registry
/gate-check — validate readiness for next phase
Phase 3b: Set Review Mode
Check if production/review-mode.txt already exists.
If it exists: Read it and show the current mode — "Review mode is set to [current]." — then proceed to Phase 4. Do not ask again.
If it does not exist: Use AskUserQuestion:
- Prompt: "One setup choice: how much design review would you want as you work through the workflow?"
- Options:
Full — Director specialists review at each key workflow step. Best for teams, learning the workflow, or when you want thorough feedback on every decision.
Lean (recommended) — Directors only at phase gate transitions (/gate-check). Skips per-skill reviews. Balanced approach for solo devs and small teams.
Solo — No director reviews at all. Maximum speed. Best for game jams, prototypes, or if the reviews feel like overhead.
Write the choice to production/review-mode.txt immediately after the user
selects — no separate "May I write?" needed, as the write is a direct
consequence of the selection:
Full → write full
Lean (recommended) → write lean
Solo → write solo
Create the production/ directory if it does not exist.
Phase 4: Confirm Before Proceeding
After presenting the recommended path, use AskUserQuestion to ask the user which step they'd like to take first. Never auto-run the next skill.
- Prompt: "Would you like to start with [recommended first step]?"
- Options:
Yes, let's start with [recommended first step]
I'd like to do something else first
Phase 5: Hand Off
When the user confirms their next step, respond with a single short line: "Type [skill command] to begin." Nothing else. Do not re-explain the skill or add encouragement. The /start skill's job is done.
Verdict: COMPLETE — user oriented and handed off to next step.
Edge Cases
- User picks D but project is empty: Gently redirect — "It looks like the project is a fresh template with no artifacts yet. Would Path A or B be a better fit?"
- User picks A but project has code: Mention what you found — "I noticed there's already code in
src/. Did you mean to pick D (existing work)?"
- User is returning (engine configured, concept exists): Skip onboarding entirely — "It looks like you're already set up! Your engine is [X] and you have a game concept at
design/gdd/game-concept.md. Review mode: [read from production/review-mode.txt, or 'lean (default)' if missing]. Want to pick up where you left off? Try /sprint-plan or just tell me what you'd like to work on."
- User doesn't fit any option: Let them describe their situation in their own words and adapt.
Collaborative Protocol
- Ask first — never assume the user's state or intent
- Present options — give clear paths, not mandates
- User decides — they pick the direction
- No auto-execution — recommend the next skill, don't run it without asking
- Adapt — if the user's situation doesn't fit a template, listen and adjust
1---2name: start3description: First-time onboarding — asks where you are, then guides you to the right workflow. No assumptions.4---56# Guided Onboarding78This skill writes one file: `production/review-mode.txt` (review mode config set in Phase 3b).910This skill is the entry point for new users. It does NOT assume you have a game idea, an engine preference, or any prior experience. It asks first, then routes you to the right workflow.1112---1314## Phase 1: Detect Project State1516Before asking anything, silently gather context so you can tailor your guidance. Do NOT show these results unprompted — they inform your recommendations, not the conversation opener.1718Check:19- **Engine configured?** Read `.claude/docs/technical-preferences.md`. If the Engine field contains `[TO BE CONFIGURED]`, the engine is not set.20- **Game concept exists?** Check for `design/gdd/game-concept.md`.21- **Source code exists?** Glob for source files in `src/` (`*.gd`, `*.cs`, `*.cpp`, `*.h`, `*.rs`, `*.py`, `*.js`, `*.ts`).22- **Prototypes exist?** Check for subdirectories in `prototypes/`.23- **Design docs exist?** Count markdown files in `design/gdd/`.24- **Production artifacts?** Check for files in `production/sprints/` or `production/milestones/`.2526Store these findings internally to validate the user's self-assessment and tailor recommendations.2728---2930## Phase 2: Ask Where the User Is3132This is the first thing the user sees. Use `AskUserQuestion` with these exact options so the user can click rather than type:3334- **Prompt**: "Welcome to Claude Code Game Studios! Before I suggest anything, I'd like to understand where you're starting from. Where are you at with your game idea right now?"35- **Options**:36 - `A) No idea yet` — I don't have a game concept at all. I want to explore and figure out what to make.37 - `B) Vague idea` — I have a rough theme, feeling, or genre in mind (e.g., "something with space" or "a cozy farming game") but nothing concrete.38 - `C) Clear concept` — I know the core idea — genre, basic mechanics, maybe a pitch sentence — but haven't formalized it into documents yet.39 - `D) Existing work` — I already have design docs, prototypes, code, or significant planning done. I want to organize or continue the work.4041Wait for the user's selection. Do not proceed until they respond.4243---4445## Phase 3: Route Based on Answer4647#### If A: No idea yet4849The user needs creative exploration before anything else.50511. Acknowledge that starting from zero is completely fine522. Briefly explain what `/brainstorm` does (guided ideation using professional frameworks — MDA, player psychology, verb-first design). Mention that it has two modes: `/brainstorm open` for fully open exploration, or `/brainstorm [hint]` if they have even a vague theme (e.g., "space", "cozy", "horror").533. Recommend running `/brainstorm open` as the next step, but invite them to use a hint if something comes to mind544. Show the recommended path:55 **Concept phase:**56 - `/brainstorm open` — discover your game concept57 - `/setup-engine` — configure the engine (brainstorm will recommend one)58 - `/art-bible` — define visual identity (uses the Visual Identity Anchor brainstorm produces)59 - `/map-systems` — decompose the concept into systems60 - `/design-system` — author a GDD for each MVP system61 - `/review-all-gdds` — cross-system consistency check62 - `/gate-check` — validate readiness before architecture work63 **Architecture phase:**64 - `/create-architecture` — produce the master architecture blueprint and Required ADR list65 - `/architecture-decision (×N)` — record key technical decisions, following the Required ADR list66 - `/create-control-manifest` — compile decisions into an actionable rules sheet67 - `/architecture-review` — validate architecture coverage68 **Pre-Production phase:**69 - `/ux-design` — author UX specs for key screens (main menu, HUD, core interactions)70 - `/prototype` — build a throwaway prototype to validate the core mechanic71 - `/playtest-report (×1+)` — document each vertical slice playtest session72 - `/create-epics` — map systems to epics73 - `/create-stories` — break epics into implementable stories74 - `/sprint-plan` — plan the first sprint75 **Production phase:** → pick up stories with `/dev-story`7677#### If B: Vague idea78791. Ask them to share their vague idea — even a few words is enough802. Validate the idea as a starting point (don't judge or redirect)813. Recommend running `/brainstorm [their hint]` to develop it824. Show the recommended path:83 **Concept phase:**84 - `/brainstorm [hint]` — develop the idea into a full concept85 - `/setup-engine` — configure the engine86 - `/art-bible` — define visual identity (uses the Visual Identity Anchor brainstorm produces)87 - `/map-systems` — decompose the concept into systems88 - `/design-system` — author a GDD for each MVP system89 - `/review-all-gdds` — cross-system consistency check90 - `/gate-check` — validate readiness before architecture work91 **Architecture phase:**92 - `/create-architecture` — produce the master architecture blueprint and Required ADR list93 - `/architecture-decision (×N)` — record key technical decisions, following the Required ADR list94 - `/create-control-manifest` — compile decisions into an actionable rules sheet95 - `/architecture-review` — validate architecture coverage96 **Pre-Production phase:**97 - `/ux-design` — author UX specs for key screens (main menu, HUD, core interactions)98 - `/prototype` — build a throwaway prototype to validate the core mechanic99 - `/playtest-report (×1+)` — document each vertical slice playtest session100 - `/create-epics` — map systems to epics101 - `/create-stories` — break epics into implementable stories102 - `/sprint-plan` — plan the first sprint103 **Production phase:** → pick up stories with `/dev-story`104105#### If C: Clear concept1061071. Ask them to describe their concept in one sentence — genre and core mechanic. Use plain text, not AskUserQuestion (it's an open response).1082. Acknowledge the concept, then use `AskUserQuestion` to offer two paths:109 - **Prompt**: "How would you like to proceed?"110 - **Options**:111 - `Formalize it first` — Run `/brainstorm [concept]` to structure it into a proper game concept document112 - `Jump straight in` — Go to `/setup-engine` now and write the GDD manually afterward1133. Show the recommended path:114 **Concept phase:**115 - `/brainstorm` or `/setup-engine` — (their pick from step 2)116 - `/art-bible` — define visual identity (after brainstorm if run, or after concept doc exists)117 - `/design-review` — validate the concept doc118 - `/map-systems` — decompose the concept into individual systems119 - `/design-system` — author a GDD for each MVP system120 - `/review-all-gdds` — cross-system consistency check121 - `/gate-check` — validate readiness before architecture work122 **Architecture phase:**123 - `/create-architecture` — produce the master architecture blueprint and Required ADR list124 - `/architecture-decision (×N)` — record key technical decisions, following the Required ADR list125 - `/create-control-manifest` — compile decisions into an actionable rules sheet126 - `/architecture-review` — validate architecture coverage127 **Pre-Production phase:**128 - `/ux-design` — author UX specs for key screens (main menu, HUD, core interactions)129 - `/prototype` — build a throwaway prototype to validate the core mechanic130 - `/playtest-report (×1+)` — document each vertical slice playtest session131 - `/create-epics` — map systems to epics132 - `/create-stories` — break epics into implementable stories133 - `/sprint-plan` — plan the first sprint134 **Production phase:** → pick up stories with `/dev-story`135136#### If D: Existing work1371381. Share what you found in Phase 1:139 - "I can see you have [X source files / Y design docs / Z prototypes]..."140 - "Your engine is [configured as X / not yet configured]..."1411422. **Sub-case D1 — Early stage** (engine not configured or only a game concept exists):143 - Recommend `/setup-engine` first if engine not configured144 - Then `/project-stage-detect` for a gap inventory145146 **Sub-case D2 — GDDs, ADRs, or stories already exist:**147 - Explain: "Having files isn't the same as the template's skills being able to use them. GDDs might be missing required sections. `/adopt` checks this specifically."148 - Recommend:149 1. `/project-stage-detect` — understand what phase and what's missing entirely150 2. `/adopt` — audit whether existing artifacts are in the right internal format1511523. Show the recommended path for D2:153 - `/project-stage-detect` — phase detection + existence gaps154 - `/adopt` — format compliance audit + migration plan155 - `/setup-engine` — if engine not configured156 - `/design-system retrofit [path]` — fill missing GDD sections157 - `/architecture-decision retrofit [path]` — add missing ADR sections158 - `/architecture-review` — bootstrap the TR requirement registry159 - `/gate-check` — validate readiness for next phase160161---162163## Phase 3b: Set Review Mode164165Check if `production/review-mode.txt` already exists.166167**If it exists**: Read it and show the current mode — "Review mode is set to `[current]`." — then proceed to Phase 4. Do not ask again.168169**If it does not exist**: Use `AskUserQuestion`:170171- **Prompt**: "One setup choice: how much design review would you want as you work through the workflow?"172- **Options**:173 - `Full` — Director specialists review at each key workflow step. Best for teams, learning the workflow, or when you want thorough feedback on every decision.174 - `Lean (recommended)` — Directors only at phase gate transitions (/gate-check). Skips per-skill reviews. Balanced approach for solo devs and small teams.175 - `Solo` — No director reviews at all. Maximum speed. Best for game jams, prototypes, or if the reviews feel like overhead.176177Write the choice to `production/review-mode.txt` immediately after the user178selects — no separate "May I write?" needed, as the write is a direct179consequence of the selection:180- `Full` → write `full`181- `Lean (recommended)` → write `lean`182- `Solo` → write `solo`183184Create the `production/` directory if it does not exist.185186---187188## Phase 4: Confirm Before Proceeding189190After presenting the recommended path, use `AskUserQuestion` to ask the user which step they'd like to take first. Never auto-run the next skill.191192- **Prompt**: "Would you like to start with [recommended first step]?"193- **Options**:194 - `Yes, let's start with [recommended first step]`195 - `I'd like to do something else first`196197---198199## Phase 5: Hand Off200201When the user confirms their next step, respond with a single short line: "Type `[skill command]` to begin." Nothing else. Do not re-explain the skill or add encouragement. The `/start` skill's job is done.202203Verdict: **COMPLETE** — user oriented and handed off to next step.204205---206207## Edge Cases208209- **User picks D but project is empty**: Gently redirect — "It looks like the project is a fresh template with no artifacts yet. Would Path A or B be a better fit?"210- **User picks A but project has code**: Mention what you found — "I noticed there's already code in `src/`. Did you mean to pick D (existing work)?"211- **User is returning (engine configured, concept exists)**: Skip onboarding entirely — "It looks like you're already set up! Your engine is [X] and you have a game concept at `design/gdd/game-concept.md`. Review mode: `[read from production/review-mode.txt, or 'lean (default)' if missing]`. Want to pick up where you left off? Try `/sprint-plan` or just tell me what you'd like to work on."212- **User doesn't fit any option**: Let them describe their situation in their own words and adapt.213214---215216## Collaborative Protocol2172181. **Ask first** — never assume the user's state or intent2192. **Present options** — give clear paths, not mandates2203. **User decides** — they pick the direction2214. **No auto-execution** — recommend the next skill, don't run it without asking2225. **Adapt** — if the user's situation doesn't fit a template, listen and adjust