What problem does it solve? Recalled-from-memory Godot APIs are a frequent source of silent failures, especially Godot 3-to-4 renames and dropped properties. This Skill makes the official Godot documentation the source of truth, so every class name, method, signal, property, and enum is verified before it is written into code. ## Core Features & Use Cases - Class API Lookup: Fetch the full API for any Godot class (methods, signals, properties, enums, inheritance) with godot_docs_get_class. - Page Retrieval: Pull specific tutorials, guides, or class pages by URL with godot_docs_get_page for recommended patterns and deprecations. - Keyword Search: Discover the right class with godot_docs_search when you do not yet know the class name. - Use Case: A build fails with VERIFY-FAIL unknown property "energy_multiplier". Instead of guessing, look up the Light3D class and confirm the Godot 4 name is light_energy before fixing the scene. ## Quick Start Ask the agent to verify the Godot 4 API signature for a class or property you are about to use, for example confirming the correct property name on Light3D before writing it.