feat: add new-unity-project orchestrator skill#26
Merged
Conversation
A thin, slash-invocable composer that gives the guided "idea -> running project" experience without duplicating the reference skills. It owns the flow only — questions, ordering, and handoffs — and delegates all mechanics: - Guided AskUserQuestion flow (concept -> platforms/monetization). - Backgrounds the multi-minute Editor install while it keeps asking questions, so setup overlaps the conversation (the key win over a raw recipe). - Delegates commands to unity-cli and package installs to unity-package-management; hands off monetization to implement-in-app-purchases / levelplay-unity-integration / build-live-game. - Deliberately NO gameplay scaffolding (the weak, throwaway-primitive step) and NO command reference (lives in the delegated skills). Addresses the standalone-skill benefits raised in review (explicit /invocation + guided questions + parallel installs) while avoiding the overlap that motivated folding the recipe into unity-cli. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
e2e17b9
into
unity-cli/add-new-project-workflow
3 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a
new-unity-projectskill — a thin, slash-invocable orchestrator that gives the guided "idea → running project" experience.Stacked on #25 (
unity-cli/add-new-project-workflow). Review/merge #25 first; GitHub will retarget this tomainautomatically.Why
Review feedback (@ewhittom) surfaced two things a standalone skill does that a workflow buried in
unity-clican't:/new-unity-projectinvocation — a clean, discoverable entry point for "I want to make a game," instead of only/unity-cli.unity install <editor> + modulesin the background while the user answers concept questions, so setup overlaps the conversation.Neither lives naturally in a command reference. So this skill owns the flow and nothing else.
Design: delegate, don't duplicate
This is what keeps it from overlapping
unity-cli(the original concern):AskUserQuestionflow, question ordering, the background-install timing, and the handoffs.unity-cli(its "Bootstrap a new project from scratch" workflow is the backbone), package installs tounity-package-management, and monetization/backend integration to implement-in-app-purchases / levelplay-unity-integration / build-live-game.Deliberately out of scope
Security
--git-token-stdinonly, no secret literals, nocurl | sh, no internal references; diff scanned clean of emoji/zero-width/variation-selector characters.🤖 Generated with Claude Code