How to Improve a Game with AI
The fastest way to improve a game with AI is to treat each turn like a focused direction change instead of a full restart.
Change one layer at a time
Section titled “Change one layer at a time”When possible, keep each request focused on one layer:
- mechanics
- controls
- visuals
- UI
- progression
- bug fixing
This makes the result easier to judge and easier to correct.
Tell Vibecade what to keep
Section titled “Tell Vibecade what to keep”If part of the game already feels right, say so explicitly.
Examples:
- “Keep the movement and enemy balance. Only redesign the menus.”
- “Do not change the art style. Just add a scoring system.”
- “Preserve the current level layout and tighten the jump timing.”
Use evidence from the preview
Section titled “Use evidence from the preview”The best follow-up prompts reference what you just observed.
Examples:
- “The character accelerates too slowly. Make movement more responsive.”
- “The HUD overlaps the game on smaller screens. Move it into the corners.”
- “Enemies crowd the spawn point too early. Delay the first wave.”
Use logs when something breaks
Section titled “Use logs when something breaks”If the preview is blank, stuck, or obviously broken:
- Check the logs.
- Describe the visible problem.
- Ask Vibecade to fix that specific issue.
A prompt like “The preview is blank after the last change. Fix the runtime error and keep the current design” is better than restarting the whole project.
Ask for structure when the project grows
Section titled “Ask for structure when the project grows”As your game becomes more ambitious, it helps to request cleaner organization:
- “Split combat logic into cleaner modules.”
- “Organize UI styles so the HUD and menus stay consistent.”
- “Refactor the player logic before adding more weapons.”
This is especially useful before large new features.
When to start a fresh project
Section titled “When to start a fresh project”Sometimes a clean restart is faster than forcing one thread to do everything. Consider a new project if:
- the core idea changed completely
- the genre changed
- the visual direction changed beyond recognition
- you want to compare two very different concepts
Starting fresh usually means the concept got clearer, not that the old project failed.
A simple AI game iteration rhythm
Section titled “A simple AI game iteration rhythm”Use this loop:
- Play the latest version for one minute.
- Pick the biggest problem.
- Ask for one clear improvement.
- Repeat.
This rhythm usually produces better games than asking for ten fixes at once.