Prompt to game, with the part nobody mentions

A prompt is a good way to get behaviour written and a poor way to get a world built. Stage Engine splits the job along that line and is direct about which half is yours.

What a prompt is actually good at

Rules. Logic. Behaviour. "The lantern goes out if you stand in the rain for more than ten seconds" is a sentence that carries all the information needed to implement it, and Director 1 will write the GDScript for it in your project.

Anything with a shape is different. "A village at the foot of a mountain, with the path from the north running through it" is a sentence that leaves out everything that matters: how steep, how far, where the houses sit relative to the road, where you can see the mountain from. You know the answers. Getting them out through prose is slower than pointing.

So prompting does the systems and your hands do the place. That split is the design of the tool rather than a temporary limitation.

The demo problem

Prompt-to-game demos are usually short because short is where they work. One sentence, one scene, something moves. It is a real capability and it is also the easiest possible case.

The hard case is hour four, when the game has twelve interacting systems, you want the eleventh changed, and the change must not break the other ten. That is where a tool either holds up or does not, and it is not a thing a demo can show you.

What helps at hour four is that the code lives in a real Godot project on your disk, visible and editable, rather than in a hidden state somewhere. Changes are made to a thing that exists.

The loop that gets you somewhere

Say what should happen. Play it. Notice it is wrong. Say what is wrong. Play it again.

That fourth step is the one people underestimate. "The enemy should notice me sooner" is more useful than any first prompt, because it is a correction against something real rather than a guess about something imaginary. The best results come from people who play a lot and are specific about what bothers them.

You do not need to write code to be specific. Not writing code has nothing to do with not knowing what feels wrong.

Where this runs

Stage Engine is a desktop app for Mac and Windows with Godot bundled inside it. Press play and the game runs on your own hardware, locally. There is no browser preview and nothing is streamed to you.

Building needs an internet connection, since Director 1, asset generation and world data all come over the network. Playing what you built does not.

Free to download, with a free plan. Indie is $10 a month, Pro is $50, and both carry more usage rather than different software.

Writing a prompt that gets somewhere

Name the trigger and the outcome. Something happens, and then something else follows. That is the shape Director 1 can turn into code, and it is a much better opening than an adjective.

Give numbers when you have them. Ten seconds, three hits, twice as fast. If you do not have a number, say so and pick one to try, because a number you can adjust is more useful than a vague word you cannot.

Keep one change per request once the game exists. Asking for six things at once makes it hard to tell which of them landed badly, and hard to undo just the bad one. Small requests, played after each one, get you somewhere faster even though they feel slower.

Questions

Can one prompt make a whole game?
No, and anything claiming otherwise is showing you a demo. A prompt gets systems written. The world and the judgement are yours.
What does Director 1 produce?
GDScript in your Godot project. Readable, editable, and sitting on your disk rather than hidden behind the tool.
How specific should I be?
Very, especially when correcting something you just played. Concrete complaints produce better revisions than elaborate opening descriptions.
Do I prompt the world into existence too?
No. You build the world by hand with manual controls, because pointing at where something goes is faster than describing it.
Is it a browser tool?
No. Mac and Windows desktop app, with the game running locally on the bundled Godot.