An AI game maker for game jams, and the honest caveats
A jam is a deadline problem, not a skill problem. Stage Engine removes the hours you would have spent writing systems code and leaves you the hours where the game gets good.
Where jam time actually goes
Most jam post-mortems say the same thing. Eight hours on the idea, four on setup, twenty on plumbing that nobody sees, and then a frantic hour making the game fun at the end because that was the only hour left for it.
The plumbing is the part worth attacking. Save states, menus, input handling, a pause screen, an inventory that does not corrupt itself. None of it is the game and all of it is required.
That work is exactly what Director 1 does. You describe the system and it writes the GDScript in your project. You do not read it, you play it, and when it is wrong you say what is wrong.
The build side, when the clock is running
You build the world by hand in the builder. For a jam that is a feature rather than a cost, because roughing a space into shape with your hands is fast and iterating on it is faster. Terrain, water and weather are there without setup.
Scope discipline still applies and no tool suspends it. What changes is where the ceiling sits: a two-day project can plausibly be a small 3D world rather than a flat scene, because the game runs natively on the bundled Godot rather than in a tab.
The other jam habit that helps here is building the thing you can play first, then decorating. Get a loop that runs on hour three and you will still be able to fix it on hour forty.
Three things to check before the jam starts
You need an internet connection to build. Director 1, asset generation and world data all come over the network. If the jam is in a venue with terrible wifi, or you were planning to work on a train, that is a real constraint and you should know it now rather than at hour six.
It is a desktop app for Mac and Windows. Install it before the jam, not during. It carries its own copy of Godot, so there is nothing else to set up.
Check what your jam allows. Some jams restrict AI-assisted work or require disclosure. That is between you and the jam rules, and the code Director 1 writes lives openly in your project if you need to show it.
Shipping at the end
What you have is a Godot project. Godot exports to desktop platforms in the normal way, so the jam build is a normal build rather than something that only runs inside our app.
If your jam requires a web build specifically, be aware that this tool is not aimed at that: it is built around a game running locally with the performance that implies. Check the submission format before you commit.
What it costs for a weekend
The download is free and there is a free plan. Indie is $10 a month and Pro is $50, and paid plans buy more usage rather than different features, which matters in a jam because usage is the thing you burn through when you are iterating hard for two days.
There is no jam licence and no special tier, because it would be a fiction. It is the same app either way.
A rough hour-by-hour shape
Hours one to three: decide the loop and get something moving in a rough space. Not the whole level. Enough to know what the game is.
Hours four to twenty: build the world by hand and describe the systems as you need them. Resist adding a second mechanic. The jam entries that land almost always have one idea done properly.
The last quarter: stop adding and start fixing. Sound, a title screen, whatever makes it legible to someone who was not in the room. Judges play for four minutes and the first thirty seconds decide most of it.
Questions
- Can I use it offline at a jam venue?
- No. Building needs an internet connection — Director 1, asset generation and world data are all online. Playing the game you built does not.
- Is AI-assisted work allowed in jams?
- That depends on the jam and you should read its rules. The code written for you sits in your project in plain GDScript if disclosure is required.
- How much can I realistically finish in 48 hours?
- Something small, playable and specific. Removing the coding time does not remove design time, and design time is what a jam is short of.
- Can I export a web build?
- It is a Godot project, so Godot's export options apply, but the tool is built around games running locally on desktop. If your jam demands a web build, check that first.
- What does it cost?
- Free to download with a free plan. Indie is $10 a month, Pro is $50, both buying more usage.