From game-creator
Guides video game development: brainstorm ideas, plan gameplay loops, choose engines like Unity/Godot/Three.js/Phaser, scaffold projects, add features, fix bugs, create assets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/game-creator:make-gameThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When working with a user to create a video game, reference the skills/pipelines/commands provided to help the user create a perfect pipeline for their game development.
phase-pipelines/development.mdphase-pipelines/idea.mdphase-pipelines/scaffold.mdsub-pipelines/README.mdsub-pipelines/agents-bootstrap.mdsub-pipelines/asset-pipeline.mdsub-pipelines/bug-fix.mdsub-pipelines/doc-drift-audit.mdsub-pipelines/live-iterate.mdsub-pipelines/milestone-planning.mdsub-pipelines/playtest-repro.mdsub-pipelines/scope-triage.mdsub-pipelines/session-start.mdsub-pipelines/state-machine.mdtemplates/README.mdtemplates/adr.mdtemplates/agents.mdtemplates/backlog.mdtemplates/gameplan.mdtemplates/milestone.mdWhen working with a user to create a video game, reference the skills/pipelines/commands provided to help the user create a perfect pipeline for their game development.
Based on the state of the user's request, current codebase, and stage of development, choose the proper steps to take with the user to complete their request.
Use this skill when:
docs/, source files, or an engine config like package.json with Phaser/Three.js, a Unity Assets/, a Godot project.godot, etc.)Do not use this skill when:
/viral-game instead. That pipeline is opinionated (Phaser/Three.js, here.now, Play.fun) and trades the planning rigor of this skill for ~10-minute time-to-deploy. If a /viral-game session outgrows itself (the user starts asking for milestones, ADRs, or long-term iteration), they should switch back to this skill.docs/gameplan.md does not exist, you MUST run the idea-phase pipeline to completion — gameplan, docs/tech.md, and ADR-0001 written and user-confirmed — before creating any source files, running engine scaffolders, installing dependencies, or otherwise touching code. A detailed-sounding user prompt is not a substitute for the idea-phase questions: even if the user says "3D racing game with pixel art shaders," you do not yet know the gameplay loop, win condition, controls, scope, or target session length, and improvising those choices is the single biggest cause of refactoring later. Treat this as a hard tripwire — if you find yourself about to scaffold a project without a written gameplan the user has signed off on, stop and run the idea phase first. The clarifying-questions checklist in idea.md is the minimum bar; do not skip items because the prompt "seems clear."docs/STATE.md, docs/gameplan.md, docs/tech.md, milestones), determines the current phase, and confirms the next step with the user. Skip only if there is no project directory yet (idea-phase brand-new conversation).AskUserQuestion tool. If you can provide some recommendations as multiple choice answers, with the option for the user to provide their own answer, that would be optimal.
npm create @phaserjs/game@latest for Phaser; npm create vite@latest (then npm install three) for Three.js; Unity's -createProject CLI ("C:\Program Files\Unity\Hub\Editor\<version>\Editor\Unity.exe" -createProject "<path>" -quit on Windows, /Applications/Unity/Hub/Editor/<version>/Unity.app/Contents/MacOS/Unity -createProject <path> -quit on macOS) or Unity Hub's "New project" dialog. For Godot/Unreal, ask the user to create the project from the editor. Hand-written package.json, bundler configs, or engine entry points cause version mismatches the moment a second library is added — do not do it. If you cannot find an official scaffolder and the user cannot point you to one, ask the user to initialize the project themselves and resume the session once it's ready, rather than improvising a setup. Full guidance and per-engine examples live in scaffold.md step 3.docs/ folder is updated to reflect their changes. For large architecture decisions, we should write to docs/architectural-decisions that can be referenced later with the changelogs. These changelogs must be detailed and include the reason for changing them. The docs/gameplan.md file must also be updated when these decisions are made, with referenced to the AD documents behind the changes.render_game_to_text() → advanceTime() → screenshot if visual → user check). A change is not "done" until it has been iterated on./qa-game) for gameplay logic and visual baselines; unit tests for pure helpers; multi-client Playwright for multiplayer. Visual/feel AC that can't be meaningfully asserted (juice, polish) must be explicitly marked "verified by user playtest" in the milestone — never silently skipped. If the AC is too vague to write a test against, run playtest / repro first to make it checkable. Loosening a failing test to make it pass is forbidden — fix the implementation, or update the milestone AC and rewrite the test.docs/backlog.md, and pick the single best balance of important and easy to ship in one focused session via AskUserQuestion. Sessions that try to carry multiple unrelated features cause context drift, make live-iterate verification ambiguous (which feature broke?), and leave milestones half-checked. Bundling features is allowed only when the user explicitly insists and acknowledges the trade-off.docs/backlog.md using the shape from templates/backlog.md. The backlog is the single home for "later" — never rely on conversation memory or docs/STATE.md notes to remember future work. The development pipeline and milestone planning both read this file.docs/gameplan.md is satisfied — derive the next 1–3 milestones from the gap between the gameplan and current state + backlog, ordered architecture-enabling first, then confirm via AskUserQuestion before writing any milestone files. Cap proposals at three: future milestones will look different once the next ones ship, so over-committing wastes planning effort. Never propose a milestone whose exit condition can't be written as "User does X → observes Y" — vague targets produce vague milestones.AGENTS.md must exist at the project root for any project past the idea phase. It is the cross-tool, unconditionally-read enforcement file that guarantees future sessions follow this skill's rules even when the skill itself doesn't auto-trigger. If you find a project past the idea phase without an AGENTS.md, run the agents-bootstrap sub-pipeline before continuing other work.If the user pushes back on documentation overhead ("just code it", "skip the docs"), do not silently abandon the doc rules — that is exactly how cross-session drift starts. Instead, downgrade to minimum-viable doc mode and tell the user you're doing so:
docs/STATE.md updates remain mandatory — even one line.docs/gameplan.md and docs/tech.md remain mandatory if they don't yet exist (otherwise the next session has no source of truth).The point is to compress the docs, not delete them. If the user wants no docs at all, that signals they want a different tool — say so honestly rather than running this skill in a degraded state.
The user has an idea for a game, but no codebase or documentation around it yet. Maybe there is concept art or some sort of lore they've come up with. In this phase, you should help the user brainstorm, develop, and iron out their game idea and gameplay loop.
Refer to this document for the idea phase pipeline. Follow it.
docs/ folder is created in the project directorydocs/gameplan.md is written with detailed game information based on brainstorming and planning with the userdocs/tech.md is written with detailed tech stack information, with the use of each library/framework includeddocs/architectural-decisions/ folder exists with 0001-engine-and-stack.md locking the engine, language, and art-style decisionsIf the project directory has not been created yet, ask the user for permission to create a new project directory and write the folders/files there. Before moving to the next phase, ask the user to start a new session in the project directory so it becomes your CWD. Provide a resume prompt for the new session.
After the idea for the game has been solidified, help the user scaffold the project. The methods used to scaffold said project will depend on the tech stack used for the project.
Refer to this document for the scaffold phase pipeline. Follow it.
AGENTS.md and CLAUDE.md exist at the project root (see agents-bootstrap sub-pipeline)npm run dev, engine equivalent) without further setup"No compilation errors" alone is not sufficient — projects often build clean and crash on boot. The smoke test in scaffold.md is mandatory before declaring this phase complete.
This phase is the longest, and possibly never ending phase. The pipeline here is extremely important, and should be applied to any and all feature work in this project. If the user is asking you to fix a bug, you can defer this pipeline to quickly fix said bug and focus on bug fixing.
Refer to this document for the development phase pipeline. Follow it.
There are no requirements for phase completion, as this is an active phase which possibly never ends, and the milestones within the pipeline document requirements and acceptance criteria.
Within the development phase pipeline, you will use milestones as a source of truth for different large scoped tasks. These milestones live within docs/milestones/*.md.
Every milestone should include but not be limited to the following:
You MUST ground all large changes in a milestone document, or ensure your changes are grounded in an existing milestone document. The only exceptions to this are small changes that would not require extreme planning, general bug fixes, or follow up changes that the user asks you to make, so long as they are within the scope of the milestone you're working on.
Small feature additions or changes that would not warrant a milestone may be deferred. If the changes would matter in the future, they must be documented in a milestone. You can revise milestone documents for cases like this.
At the end of implementation, you must ensure we keep milestone documentation updated and AC boxes checked off, otherwise future sessions will assume the milestones are incomplete, when they are complete. Ensure the user tests the exit condition of each milestone before moving on or marking as complete.
When new work surfaces during a session, decide whether to extend the current milestone or open a new one:
Depends on: field in the new milestone's frontmatter to capture the ordering relationship.When in doubt, prefer spawning a new milestone over inflating the current one. A bloated milestone hides progress and makes the exit condition harder to test.
docs/gameplan.mdThe main source of truth around the game and idea of the game. Includes gameplay loop, rules, main game idea, art style, etc.
At the start of every session. When reading through milestones. When gathering context about the game around the user's request.
When the user wants to change how the game works, when rules change, etc. This is the main source of truth for how the game should work.
docs/tech.mdThe main source of truth on the tech stack.
At the start of every session. When planning out milestones and architectural decisions.
When adding new tech to the stack or changing out the core game engines/libraries/frameworks being used.
docs/milestones/*.mdDetailed milestones for different features and tasks that eventually build the game.
Prior to implementation. When users ask for you to perform changes to the codebase. Anytime you need relevant prior information to what's been done so far.
When a user asks for new features, changes, etc. that have not yet been implemented in the codebase. When the user wants a full refactor to an older milestone, etc.
You should not have to update milestones once written unless there are explicit changes requested by the user, or if you are checking off acceptance criteria.
docs/architectural-decisions/*.mdDetailed ADRs for different top-level architectural decisions. Use templates/adr.md when creating one. The first ADR (0001) should be created at the end of the idea phase to lock in engine / language / art-style decisions.
docs/backlog.mdSingle-file, append-only catalog of every feature, polish item, refactor, or open question the user has mentioned but that was deferred out of the session that captured it. The home for "later". Created from templates/backlog.md the first time scope triage defers an item.
Promoted entries get a checkbox tick and a link to the milestone that absorbed them — they are not deleted. Rejected entries are struck through with a one-line reason. The history matters: future sessions need to see what was considered, when, and why it was deferred or rejected.
docs/STATE.mdSingle-file session handoff. The previous session's last action, current milestone, and the next concrete step. Read first by the session-start sub-pipeline, updated at the end of any session that made progress. Use templates/state.md.
At the very start of every session in an existing project, before any other doc.
At the end of any session that changed code, docs, or decisions. Even one line is better than nothing — the goal is continuity for the next session.
AGENTS.md and CLAUDE.md (project root)The cross-session, cross-tool enforcement file. AGENTS.md is read unconditionally by Cursor, Aider, Codex, Claude, and other agent tools at session start — a stronger guarantee than skill description matching. CLAUDE.md is a one-line pointer to AGENTS.md so the two files never drift.
Generated by the agents-bootstrap sub-pipeline using templates/agents.md.
AGENTS.md is read by other agents — you don't need to read it during a normal make-game session because the source of truth lives in docs/. Read it when auditing for drift, when the user reports an outside agent ignored the rules, or before regenerating it.
gameplan.md and tech.md exist.AGENTS.md as stale.Every architecture rule in AGENTS.md must also live in docs/tech.md or an ADR. AGENTS.md is a reflection of the source-of-truth docs, not its own source.
When creating any of the docs the skill mandates (gameplan.md, tech.md, milestones, ADRs, STATE.md), copy the structure from templates/ rather than improvising. Consistent structure across sessions is the highest-leverage anti-drift mechanism in this skill.
These sub-pipelines can be used for individual steps during development, such as asset genration, lore building, gameplay loop building, research, etc.
Refer to this document to see all currently available sub-pipelines. Use them when necessary only if the task calls for it. Always refer to sub-pipelines to see if there's one available to use before starting your own pipeline of work.
It may be useful to install other skills to the project. There are many other skills in the game-creator Skill suite and plugin that can interlace with this skill.
Refer to this document to see skills you can install to the project directory that will help with development, planning, asset generation, etc based on what project you're working on.
npx claudepluginhub playableintelligence/game-creator --plugin game-creatorOrchestrates the full game-dev pipeline from brainstorm to ship, delegating to specialist skills with explicit checkpoints. Trigger on 'make me a game' or 'build a game'.
Game development tools, asset pipelines, version control, build systems, and team development workflows for efficient production.
Orchestrates game development projects by providing core principles (game loop, patterns, input abstraction, performance budgeting) and routing to platform-specific sub-skills for web, mobile, PC, VR/AR, 2D/3D, game design, multiplayer, art, and audio.