A.I. Essentials Toolkit 1.0 Tools 4.3 Community
Submitted by user ULT7RA; MIT; 2026-06-16
AI coding assistants are blind when working in game engines. They can edit code, but they can't see what the game actually looks like, can't inspect the scene tree, can't check if their changes broke something visually, and can't control the editor. They're writing code into a void and hoping it works.
AI Essentials Toolkit fixes that. It runs a lightweight HTTP server inside the Godot editor that gives any AI assistant Claude, ChatGPT, Copilot, Cursor, or custom tools direct access to:
Screenshots: Capture the editor viewport or the running game in one call. The AI can actually see what the game looks like after every change instead of guessing.
Scene Tree Inspection: Dump the full node hierarchy. The AI knows exactly what nodes exist, their types, and how they're structured.
Property Read/Write: Read all properties on any node, or change them live in the editor. Position, color, scale, visibility — no manual inspector clicking.
Game Control: Startand stop the game programmatically. Run it, screenshot, verify, stop, fix, repeat.
Script Validation: Check every GDScript file for parse errors in one call. Catch broken scripts before running.
Two servers work together: an editor plugin (port 7777) for scene editing, and a game autoload (port 7778) that captures the actual running game viewport. Any tool that can make HTTP requests can use it, no special SDK, no proprietary integration.
The result: AI assistants go from blindly predicting code to iterating visually. Edit a UI, screenshot, see it's wrong, fix it, screenshot again. That loop is what makes the difference between an AI that breaks things and one that actually ships.
View files Download Submit an issue Recent Edits