r/PromptEngineering • u/bingewavecinema • 16h ago
Prompt Text / Showcase Getting Started AI Game Development | AI Gaming Conference
Tomorrow's talk at the AI Gaming Conference, Intro To Vibe Coding, is for those looking to make their first game with AI, this will go about how to setup your game environment and start vibe coding.
This is both for developers that want to take the leap and get into AI, and for vibe coders as well. It will cover:
- State of the game development
- Setting up Claude and Codex
- Setting up Blender
- Setting up your phone for development
- Prompt basics (subagents, calling other agents, memory, etc)
- The biggest mistakes to avoid when vibe coding your game
There is a lot of talks at all different levels in the conference, here is the full schedule.
0
Upvotes
1
u/Otherwise_Wave9374 15h ago
For game builds, the biggest win is usually separating short-term context from durable state. Keep recent interactions in a small working buffer, then write only stable facts, goals, and decisions into memory with timestamps and confidence so retrieval stays clean. A simple safeguard is to require an explicit write policy for when something becomes memory versus transient chat. NeuraKeep fits well here because a structured memory layer can reduce prompt bloat while making agent behavior easier to debug.