Complete project setup wizard - GDD, creative vision, and sonic identity in one flow
Guides complete project foundation setup through GDD, creative vision, and sonic identity workflows.
/plugin marketplace add nethercore-systems/nethercore-ai-plugins/plugin install ai-game-studio@nethercore-ai-plugins[--skip-gdd|--skip-vision|--skip-audio|--quick]Guide the user through complete project foundation setup. Orchestrates all "establish" workflows in the recommended order to create a fully-documented project baseline.
This command coordinates:
zx-game-design:design-game)creative-direction:establish-vision)sound-design:establish-sonic-identity)Each step builds on the previous, creating a coherent project foundation.
First, scan for existing project documentation:
.studio/
├── creative-direction.md # Creative direction
├── sonic-identity.md # Audio direction (audio style)
├── project-status.md # Project status tracking
└── architecture/
└── decisions.md # ADRs
docs/
└── gdd.md # Game Design Document
If any exist, ask user:
Based on arguments:
--skip-gdd: Skip Game Design Document--skip-vision: Skip creative direction--skip-audio: Skip sonic identity--quick: Abbreviated versions of each (fewer questions)Ask user to confirm the scope before proceeding.
Why first: Everything else derives from the game concept.
If not skipping GDD:
zx-game-design:design-game skill/command flowIf --quick: Focus on concept, pillars, and constraints only.
Why second: Visual and technical direction depends on game concept.
If not skipping vision:
creative-direction:establish-vision command flowIf --quick: Focus on style keywords and key constraints only.
Why third: Audio direction should complement visual direction.
If not skipping audio:
sound-design:establish-sonic-identity command flowIf --quick: Focus on overall sonic mood and key instruments only.
After all steps, create/update .studio/project-status.md:
# Project Status
Last updated: [date]
## Setup Completed
- [x] Game Design Document
- [x] Creative Direction
- [x] Sonic Identity
## Phase
Current: Foundation Complete - Ready for Implementation
## Next Steps
Based on your GDD, recommended next actions:
1. [ ] Scaffold project with `zx-dev:new-game [language]`
2. [ ] Generate placeholder assets with `zx-procgen:generate-asset`
3. [ ] Implement core loop prototype
## Quick Reference
- **Concept:** [one-liner from GDD]
- **Art Style:** [from creative direction]
- **Sonic Mood:** [from audio style]
- **Architecture:** [from tech direction]
Display a comprehensive summary:
Project Setup Complete!
GAME: [Title]
[One-line concept]
CREATIVE DIRECTION:
- Art: [style keywords]
- Sound: [mood keywords]
- Tech: [architecture]
PILLARS:
1. [Pillar 1]
2. [Pillar 2]
3. [Pillar 3]
FILES CREATED:
- docs/gdd.md
- .studio/creative-direction.md
- .studio/sonic-identity.md
- .studio/project-status.md
NEXT: Run `zx-dev:new-game rust` to scaffold your project.
--quick mode