gigio1023/game-studio · Archived

game-production

Use when writing a "milestone plan" or scoping prototypes, a "vertical slice", demo, or release; when estimating "how much before the demo"; when someone wants to "set up this game project" or implement an approved piece of game work; when running long or autonomous game-development sessions; or when taking Godot or browser-game work from an approved milestone to a checked playable build. NOT for discovering or defining direction (use game-direction), judging "is this done" or other readiness c…

First seen Jul 10, 2026

Installation

$ npx skills add gigio1023/game-studio --skill game-production

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from gigio1023/game-studio.

npx skills add gigio1023/game-studio

Browse all from gigio1023/game-studio

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,785 B
  • docs SUMMARY.md 630 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Game Production

Turn an accepted direction into playable progress, one build at a time. A milestone is a product hypothesis with a playable build, not a task list: plan the smallest build that retires the biggest uncertainty, implement it without drifting from the brief, and verify it in play before claiming it.

If direction is missing, weak, or disputed, route through game-direction when available or return USERDECISIONNEEDED with the smallest decision required. Do not use a production assumption to choose the concept, player promise, stage, or public scope. Safe assumptions are limited to reversible production details inside already accepted intent.

Route By Request

Mode Authority Done state
plan Inspect the project and return the milestone, roadmap, or work packages. Do not implement unless the request also asks for changes. The plan names its build, cuts, fallback, and next decision.
implement Make requested reversible local changes inside the accepted brief and milestone, then run relevant non-destructive checks. The active claim is checked or a real blocker is named.
long-run Use the implementation authority plus the checkpoint contract in references/long-run-control.md. The build or fallback is checked, or work stops on an evidence-backed blocker.

Game Studio Milestone Ladder

Projects earn stages through played evidence, in roughly this order: first prototype (answers one named question) → first playable build (one action, one visible consequence) → core loop (repeatable with readable success, failure, and recovery) → presentation build (the chosen format earns its cost) → vertical slice (short section at representative shipped quality) → demo → release. Skipping is fine only when the skipped build already exists. Never call a prototype a vertical slice, and never let a stage advance on prose alone. This milestone ladder complements rather than replaces lifecycle labels such as alpha, beta, and release candidate.

Planning

Read references/milestone-planning.md for the planning flow, red flags, and output shape. The non-negotiables:

  • every milestone names its hypothesis, smallest useful build, cut candidates,

and fallback build;

  • a milestone that only succeeds if everything works is a plan to fail;
  • public promises must match the current build, not the roadmap.

Implementation

  • Preserve design intent: before claiming player-facing work complete, name

which player action and feedback changed, which pillar the change preserves, and which playable check showed the intended behavior.

  • Parallel implementation is an optimization, not a requirement. When you do

split work, give each stream disjoint write scopes and a handoff; review may cross boundaries, editing may not. Sequential execution is always valid.

  • For Godot projects, read references/godot-playable-build.md before build

or milestone work, and references/godot-reference-patterns.md before implementing a mechanic that matches a known demo or starter-kit pattern.

  • For browser games — Three.js, Babylon, Phaser, PixiJS, or hand-written

canvas and WebGL — read references/web-playable-build.md. The browser makes verification and distribution cheap and supplies no engine, so a camera rig, save system, or audio bus is a milestone with its own playable build, not setup work folded into another task.

  • When a build ships to players, read references/release-ledger.md before

changing a version number or writing release notes.

Long Runs

For long autonomous sessions, read references/long-run-control.md. The core guard: activity is not progress. Classify material checkpoints as playable, evidence, support, or blocked. Two consecutive support-only checkpoints trigger a re-anchor before more support work; prefer the next playable change, real play check, or blocker report.

Grounded Claims

Before reporting progress or completion, audit each claim against a check you actually ran in this session — a launched build, an executed command, an inspected artifact. If tests fail or a check was skipped, say so plainly. File changes and passing scripts are not playable build by themselves.

Authority

Within an accepted brief and milestone, an implementation request authorizes reversible local edits, refactors, placeholder cuts, and non-destructive checks; record assumptions with their reversal cost. The human owns direction changes, stage advancement, public promises, and release scope: when the next step would change any of those, stop and return USERDECISIONNEEDED with the exact decision required. Destructive or irreversible actions, external writes or uploads, spend-bearing actions, secret handling, and material scope expansion need explicit approval. Create commits, branches, tags, or pushes only when the user requests them.

Output

End a production pass with:

Mode: plan | implement | long-run
Active milestone or build:
Player-visible change or planned change:
Artifacts changed:
Evidence checked and result:
Evidence state: planned | checked | failed | blocked
Checks failed, skipped, or unverified:
Safe assumptions and cuts:
Blocker:
Human decision needed:
Next build:

Completion means the active claim is supported by current evidence. It does not advance the project stage or expand a public promise.

Gotchas

  • Do not hide the evidence inside implementation details; the milestone claim

must be player-facing and checkable.

  • Do not expand the release promise during implementation, and do not let

implementation silently change direction.

  • Do not claim a playable build from file presence alone; run the narrowest

real check (launch, scene load, smoke run, capture) that supports the claim.

  • Do not copy a starter kit or demo blindly; name the pattern, the adaptation,

the license decision, and the runtime check.

  • Do not keep generating documents, tests, or helper tooling when the next

thing that must happen is a playable change, a human taste call, or an outside decision.